Class1.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System.Diagnostics;
  2. namespace ClassLibrary1
  3. {
  4. public class Class1
  5. {
  6. public string str(string s)
  7. {
  8. Trace.Listeners.Add(new TextWriterTraceListener("test.txt"));//подключение слушателя к файлу
  9. Trace.AutoFlush = true;
  10. int max_dlina = 0;
  11. string itog_slovo ="";
  12. string [] stroki = s.Split(' ',';');
  13. foreach(string a in stroki)
  14. {
  15. int schet_symb = 0;
  16. foreach(char b in a) {
  17. schet_symb++;
  18. }
  19. if(schet_symb > max_dlina)
  20. {
  21. max_dlina = schet_symb;
  22. itog_slovo = a;
  23. }
  24. Debug.WriteLine("Слово "+ a);
  25. Debug.WriteLine("символов в слове: "+ schet_symb);
  26. Trace.WriteLine("символов в слове: " + schet_symb);
  27. }
  28. Debug.WriteLine("Итоговое слово " + itog_slovo);
  29. return itog_slovo;
  30. }
  31. }
  32. }