foreach (String s in arrayOfMessages)
{
System.Console.WriteLine(s);
}
string[,] arrayOfMessages
is being passed in as a parameter.
I want to be able to determine which strings are from arrayOfMessages[0,i]
and arrayOfMessages[n,i]
, where n
is the final index of the array.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…