It is required to fill a two-dimensional array with a space. Already have this code:
static void Zapolnenie(int[,] arr) { string arrs; Console.WriteLine("Введите элементы массива через пробел"); for (int i = 0; i < arr.GetLength(0); i++) { arrs = Console.ReadLine(); arrs.Split(new char[] { ' ' }); for(int j = 0; j < arr.GetLength(1); j++) arr[i, j] = int.Parse(arrs[j]); } } Wednesday writes that "it is not possible to convert from char to string". How to fix it?
arrs.Splitreturns result to nowhere? - gil9red pm