Mod1.cs 663 B

123456789101112131415161718192021222324252627
  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. using System.IO;
  8. namespace exem_var3
  9. {
  10. public class Mod1
  11. {
  12. public string read()//метод считывания данных из файла
  13. {
  14. string data = "data.txt";
  15. string[] da = new string[400];
  16. da = File.ReadAllLines(data);
  17. for (int i = 0; i < da.Length; i++)
  18. {
  19. Console.WriteLine(da[i]);
  20. text[i] = da[i].Split(';');
  21. Console.WriteLine(text[i]);
  22. }
  23. }
  24. }
  25. }