IDataItemCreateDataArray Method

The method exposes the contained data as a two dimensional array. The array is [number of time steps, number of points].

The array is constructed every time called as a copy of Data, and not updated if the underlying Data is updated.

para>

Definition

Namespace: DHI.Mike1D.ResultDataAccess
Assembly: DHI.Mike1D.ResultDataAccess (in DHI.Mike1D.ResultDataAccess.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
double[,] CreateDataArray()

Return Value

Double

[Missing <returns> documentation for "M:DHI.Mike1D.ResultDataAccess.IDataItem.CreateDataArray"]

Remarks

For accessing the data without making a copy, you may as well use GetValue(Int32, Int32)(timestepIndex,elementIndex) or TimeData[timestepIndex][elementIndex]

See Also