CxTypeArray

Description

sealed class Tinman.Core.Cx.CxTypeArray

Derived from

CxType abstract
ICxTypeContainer

A reference to an array type:

Type[]
Type[][]
Type[][][]
...

The CxType.ResolvedContext property may return the following values:

ICxTypeContainer.Type returns the array element type.

See also

CxType.AsArray

Public / Attributes

Depth


[Constant]
public attribute Depth → (get)

value : int32

[>=1]
The depth.

The array depth.

For a non-array type, the array depth is defined as follows:
type[] : 1
type[][] : 2
type[][][] : 3
…​