So I have 2 sets of string[9,9]
arrays, and I would like to compare them, but array1.Cast<string>.SequenceEqual(array2.Cast<string>);
gives me an error under the .Cast<string>
saying it's a method, which is not valid in the given context.
is there any better way to compare two multidimensional arrays of strings?