在C#中清零二维数组的最快方法

前端之家收集整理的这篇文章主要介绍了在C#中清零二维数组的最快方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个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.

原文链接:https://www.f2er.com/csharp/93200.html

猜你在找的C#相关文章