I have a string[,] with a set amount of string[] that stay the same and want to pick a few of them and put them in a list<string[]> (I use a list to make it ever extendable). But the list<string[]> won't accept any string[] from the string[,].
string[,] testArray =
{
{"testValue1", "testValue1.1"}
{"testValue2", "testValue2.1"}
{"testValue3", "testValue3.1"}
}
List<string[]> testList = new List<string[]>();
testList.Add(testArray[1]) //error: wrong number of indicaters inside[]
testList.Add(testArray[1,1]) //error: cannot convert from string to string[]
testList.Add(new [] {testArray[1,1]})and so on...List<string>, notList<string[]>