How do I search for a word in all rows, but only in the first column of an array that will always increase in size?
string[,] array = new string[1,6]{{"texto","","","","",""}};
if(array[array.Length, 0].Contains("texto")){...
asked by
17.10.2016 / 00:26