Good afternoon, I have a c# jagged array with true and false values (or 0's and 1's) and I want to reverse the values like:
1 1 1 1
0 1 1 0
1 1 1 1
1 0 0 1
to became:
0 0 0 0
1 0 0 1
0 0 0 0
0 1 1 0
Is there an easy way to do it not looping it? something like !myJaggedArray??