I have a class that supports a generic class, which decreases as:
public class Image<TColor, TDepth> : CvArray<TDepth>, IImage, IEquatable<Image<TColor, TDepth>> where TColor : struct, IColor where TDepth : new() { private TDepth[, ,] _array;
What does TDepth[, ,] mean in this case? What is it just a two-dimensional array?
source share