I got a string[ ][ ], for example {{a,b}{c,d}}.
How could convert it to string or using split method to display string[ ][ ] properly?
string[][] result;
result = test.AnagramsFinder(inputArray); //which returns string[][]
string value = string.Join(";",result); // this line does not work for me
Label1.Text = value ;
is only for string[ ], but not string[ ][ ].