T [,]在C#中意味着什么

时间:2012-02-29 00:11:50

标签: c# generics

我有一个声明为:

的泛型类
public class Image<TColor, TDepth>
      : CvArray<TDepth>, IImage, IEquatable<Image<TColor, TDepth>>
      where TColor : struct, IColor
      where TDepth : new()
   {
      private TDepth[, ,] _array;

在这种情况下,TDepth[, ,]意味着什么?它只是一个二维数组?

4 个答案:

答案 0 :(得分:7)

这是Multidimensional Array。在这种情况下,它有3个维度。

答案 1 :(得分:6)

它只是一个二维数组?

关闭,但不是:它是一个三维数组。

答案 2 :(得分:6)

这将是一个三维数组。

答案 3 :(得分:4)