123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Diagnostics;
- using System.IO;
- namespace exem_var3
- {
- public class Mod1
- {
- public string read()//метод считывания данных из файла
- {
- string data = "data.txt";
- string[] da = new string[400];
- da = File.ReadAllLines(data);
- for (int i = 0; i < da.Length; i++)
- {
- Console.WriteLine(da[i]);
- text[i] = da[i].Split(';');
- Console.WriteLine(text[i]);
- }
- }
- }
- }
|