DataParameter_Array
Class in SurvivEngine.Data namespace
Inherits from DataParameterBase
Implements IEnumerable<DataParameterBase>
Class in SurvivEngine.Data namespace
Inherits from DataParameterBase
Implements IEnumerable<DataParameterBase>
A fixed-size array of data parameters. All data parameters are of the same type and accessed by index.
Read-Only
The data parameter type that all elements of this array must match
All data parameters being assigned to the array will have their type checked against this type
Read-Only
The size of the array
Fixed size, assigned during construction
Sets the element at the given index to the given value.
index The array index to set.
value The value to set at the given index. Must match the assigned array type.
Returns the data parameter element at the given index or null.
index The array index to retrieve from.
The type T must inherit from DataParameterBase
Returns the element at the given index case as the type T or null.
index The array index to retrieve from.