Say I have a 3d array:
int[,,] arr = new int[3, 2, 3];
How can I delete all items under one of the first dimension? And if that can be done, will that move up all the values under it? Or will the deleted items just take null values and be counted in the arr.GetLength(0)
method?