我有一个2D数组,我想清除并重置为0值.我知道如何使用Array.Clear()清除向量(1D数组),但是我不知道清除2D矩阵的最佳方式.
double D = new double[10]; Array.Clear(D,D.Length);
如何清除2D N x M阵列
double D[,] = new double[N,M];
感谢您提供的任何帮助.
解决方法
Array.Clear
也与多维阵列一起使用:
double[,] D = new double[M,N]; Array.Clear(D,D.Length);
请注意,不需要自己计算长度,因为Length
属性返回元素的总数,而不考虑维数:
A 32-bit integer that represents the total number of elements in all the dimensions of the Array; zero if there are no elements in the array.