ES2Reader.Read3DArray

public T[,,] Read3DArray<T>(string tag)

Parameters

T The type of the data in the 3D array we want to load. Must be on the Supported Types list.

tag

The tag which we want to load.

Returns

T[ , , ] Our loaded data

Description

Reads the 3D array of type T from the ES2Reader with the given tag.

C#

Reading tags from an ES2Reader

JS

Reading tags from an ES2Reader

public T[,,] Read3DArray<T>()

Parameters

T The type of the data in the 3D array we want to load. Must be on the Supported Types list.

Returns

T[ , , ] Our loaded data

Description

Reads the array of type T from the ES2Reader. The data must have been saved sequentially using ES2Writer.

C#

Reading data sequentially from an ES2Reader

JS

Reading data sequentially from an ES2Reader