I'm currently trying to split a string into a 2d array. currently I've split it into a 1d array of each line using:
string[] LinesFile = streamReader.ReadToEnd().Split('\n');
And now I'd like to Split it further into a new variable with a 2d array.
how would I go about doing this.
Cheers Sam