I got a 2-dimentional array containing boolean values written in C#.
The cols and rows of the array are to be determined by the user upon creation of the array.
I then want to print out the array and it´s containing values onto the console in order.
For example like this, how is this done in C#?
ROWS – COLS – VALUE
1 – A – True
1 – B – True
1 – C – True
1 – D – True
2 – A – True
2 – B – False
2 – C – False
2 – D – True
Something like that.