Program.cs 658 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Diagnostics;
  7. namespace eekzamen
  8. {
  9. internal class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Class1 class1 = new Class1();
  14. string a = "привет23"; string b = "вет3";
  15. Debug.Listeners.Add(new TextWriterTraceListener(Console.Out));
  16. Debug.AutoFlush = true;
  17. Debug.Indent();
  18. Debug.WriteLine($"строкипиарf '{a}' и '{b}' = '{class1.zz(a, b)}'");
  19. Debug.Unindent();
  20. fdsflgngnkvm
  21. }
  22. }
  23. }