IFixedArrayBase interface
Base interface for all fixed sized arrays in the fixed-sized type framework. These arrays are unidimensional.
Namespace: ASNA.QSys.Runtime Assembly: ASNA.QSys.Runtime.dll
Extends: IEnumerable
Properties
Type | Name | Description |
---|---|---|
TType | Item | Indexer over the array, gets or sets the element at that position. |
Int32 | Length | Returns the length of the array. |
Methods
Signature | Description |
---|---|
Clear() | Clears all elements of the array to their default value. |
CopyFrom(TType[], Int32) | Copies elements of a .Net array of the same element type into this fixed sized array. |
void Clear()
Clears all elements of the array to their default value.
void Clear()
void CopyFrom(TType[] sourceArray, int targetStartAt)
Copies elements of a .Net array of the same element type into this fixed sized array.
void CopyFrom(TType[] sourceArray, int targetStartAt)
Parameters
Type | Parameter name | Description |
---|---|---|
TType[] | sourceArray | The array to copy from. |
Int32 | targetStartAt | The index in this array where the copying should start. |