Operator implicit operator
implicit operator int(SystemTypeIndex)
Implicit conversion from SystemTypeIndex to an int.
Declaration
public static implicit operator int(SystemTypeIndex ti)
Parameters
Type | Name | Description |
---|---|---|
SystemTypeIndex | ti | SystemTypeIndex to convert. |
Returns
Type | Description |
---|---|
int | SystemTypeIndex.Value integer representation. |
implicit operator SystemTypeIndex(int)
Implicit conversion from an int to a SystemTypeIndex.
Declaration
public static implicit operator SystemTypeIndex(int value)
Parameters
Type | Name | Description |
---|---|---|
int | value | int to convert |
Returns
Type | Description |
---|---|
SystemTypeIndex | SystemTypeIndex representation of the int |