[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Read raw data from a dataset to a 2-dimensional buffer.
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Sub read(Of Type) ( _ dataSetId As H5DataSetId, _ dataType As H5Type, _ data As Type(,) _ ) |
| C# |
|---|
public static void read<Type> ( H5DataSetId dataSetId, H5T.H5Type dataType, Type[,] data ) |
| C++ |
|---|
public: generic<typename Type> static void read ( H5DataSetId^ dataSetId, H5Type dataType, array<Type,2>^ data ) |
Parameters
- dataSetId (H5DataSetId)
- IN: Identifier of the dataset to read from.
- dataType (H5Type)
- IN: Standard H5Type
- data (Type[,](,))
- IN: array that receives the data from the file.
Generic Template Parameters
- Type
Exceptions
| Exception | Condition |
|---|---|
| HDF5DotNet.H5DreadException | throws H5DreadException if read fails |