I have a 2D array object fixed Size
object[,] = new object[1,50];
But Some times some sections of this null which i don't want in my Operation. I wanted to Remove Nulls from 2D Array.
Where I couldn't find Remove Function with this. I don't want any loop to check each index.
How to do this.
Thanks in Advance.