I want to read a 30x30 2-dimensional array containing commas from a text file and assign it to a two-dimensional array. How do I do this in C#?
Content of my text file:
1, 0, 1, 1, 1
1, 1, 0, 1, 0
1, 0, 1, 0, 0
0, 0, 1, 1, 1
It continues like this. It has 30 rows and 30 columns.