ReadFromFile.cs 672 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ExamLedrov02
  7. {
  8. internal class ReadFromFile
  9. {
  10. public string[] lines = File.ReadAllLines("../../../data.txt");
  11. /// <summary>
  12. /// Метод для чтения данных из файла
  13. /// </summary>
  14. public void Read()
  15. {
  16. DebugTr dtr = new DebugTr();
  17. dtr.diag("Чтение данных из файла data.txt");
  18. for (int i = 0; i < lines.Length; i++)
  19. {
  20. Console.WriteLine(lines[i]);
  21. }
  22. }
  23. }
  24. }