The following is my code I need a random array's individual strings.
string[,] array = new string[4,3] { { "a1", "b1", "c1" }, {"a2", "b2", "c2" } ,
{ "a3", "b3", "c3" }, { "a4", "b4", "c4" } } ;
//string a =???
//string b =???
//string c =???
What I need is either a1, b1 c1 OR a2,b2,c2 etc...
Any ideas will be appreciated..
Thanks, Arnab