H5CrtHeap provides allocation and deallocation from the "C"
run-time heap. This memory is not garbage collected, so it can be
used with void pointers that are passed to the HDF5 library. To avoid
memory leaks, all memory allocated with alloc must be freed with free.
Namespace:
HDF5DotNet
Assembly:
HDF5DotNet (in HDF5DotNet.dll)
Syntax
Visual Basic |
---|
Public NotInheritable Class H5CrtHeap |
C# |
---|
public sealed class H5CrtHeap |
Visual C++ |
---|
public ref class H5CrtHeap sealed |
JavaScript |
---|
HDF5DotNet.H5CrtHeap = function();
Type.createClass(
'HDF5DotNet.H5CrtHeap'); |
Inheritance Hierarchy
Object
HDF5DotNet..::..H5CrtHeap
See Also