I have a simple 2D array:
int[,] m = { {0,0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0,0} };
How can I print this in a text file or something else? I want to print the entire array to a file, not just the contents. For example, I do not want all zeros to be in the queue: I want to see
{{0,0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0,0} };
in him.