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

Max*_*lov 4 c# generics

我有一个泛型的类被删除为:

public class Image<TColor, TDepth>
      : CvArray<TDepth>, IImage, IEquatable<Image<TColor, TDepth>>
      where TColor : struct, IColor
      where TDepth : new()
   {
      private TDepth[, ,] _array;
Run Code Online (Sandbox Code Playgroud)

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

m-y*_*m-y 7

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


Joe*_*orn 6

它只是一个两个diminsional阵列?

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


Jus*_*ner 6

这将是一个三维数组.