|
@@ -10,7 +10,7 @@ namespace exem_var3
|
|
|
{
|
|
|
public class Mod1
|
|
|
{
|
|
|
- public void read()//метод считывания данных из файла
|
|
|
+ public string read()//метод считывания данных из файла
|
|
|
{
|
|
|
string data = "data.txt";
|
|
|
string[] da = new string[400];
|
|
@@ -18,6 +18,8 @@ namespace exem_var3
|
|
|
for (int i = 0; i < da.Length; i++)
|
|
|
{
|
|
|
Console.WriteLine(da[i]);
|
|
|
+ text[i] = da[i].Split(';');
|
|
|
+ Console.WriteLine(text[i]);
|
|
|
}
|
|
|
|
|
|
}
|