1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace My
- {
- internal class Vivod
- {
- public void Fil() //получение данных из текстового файла
- {
- string Path = "data.txt";
- string[] m = new string[500];
- m = File.ReadAllLines(Path);
- for(int i=0;i<m.Length;i++)
- {
- Console.WriteLine(m[i]);
- }
- Console.WriteLine();
- DebugT.diagnosticW("Данные из файла считаны");
- }
-
- }
- }
|