标签: c#
我有一个像images[,]这样的数组。我创建它像[a,b]。但我想稍后检查它的尺寸。我怎么检查呢?当我写images.Length时,它给了一些奇怪的东西。有没有办法同时获得a和b?
images[,]
[a,b]
images.Length
a
b
答案 0 :(得分:2)
使用此
int dim1 = images.GetLength(0); int dim2 = images.GetLength(1);
请参阅MSDN上的Array.GetLength
Array.GetLength