IIndex3D
Interface for three-dimensional indexed access to array data.
Namespace: ControlBee.Interfaces
Methods
GetValue
Gets the value at the specified indices.
object? GetValue(int index1, int index2, int index3);
Parameters:
index1— The first dimension index.index2— The second dimension index.index3— The third dimension index.
Returns: The value at the indices, or null.