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