i have problem:
string[,] a = string[27,27];
a = bootsrapMinor(data);
string[,] b = string[27,27];
b = bootstrapMayor(data);
string[,] c = a + b;
the error message is "Operator '+' cannot be applied to operands of type 'string[,]' and 'string[,]' "
anyone have solutions for my problem in joining 2 dimensional array if string? thanks alot.