-
Notifications
You must be signed in to change notification settings - Fork 13
markdocmembersresolvedtypes IResArray
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for resolved arrays
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Members.ResolvedTypes
MarkDoc.Members.ResolvedTypes.IResArray[[IResArray]]
class MarkDoc.Members.ResolvedTypes.IResArray interfaceStyle;
end
Type | Name | Methods |
---|---|---|
IResType |
ArrayType Type of given array |
get |
int |
Dimension Dimension of array |
get |
bool |
IsJagged Determines whether the array is a jagged array type |
get |
Interface for resolved arrays
public abstract IResType ArrayType { get }
Type of given array
public abstract bool IsJagged { get }
Determines whether the array is a jagged array type
public abstract int Dimension { get }
Dimension of array
Generated with MarkDoc