- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
public string[] razborstroki(string str)
{
string[] array = new string[100];
int j = 0;
for (int i = 0; i < str.Length; i++)
{
if (str[i] != ';')
array[j] += str[i];
else
j++;
}
return array;
}
Комментарии (0) RSS