如何获得double [,]的尺寸?

时间:2011-05-06 23:09:43

标签: c#

我有一个像images[,]这样的数组。我创建它像[a,b]。但我想稍后检查它的尺寸。我怎么检查呢?当我写images.Length时,它给了一些奇怪的东西。有没有办法同时获得ab

1 个答案:

答案 0 :(得分:2)

使用此

int dim1 = images.GetLength(0);
int dim2 = images.GetLength(1);

请参阅MSDN上的Array.GetLength