Skip to content
obergshavefun edited this page Mar 31, 2016 · 17 revisions

These cookbook pages contain code snippets that show how a particular task may be accomplished in HDF.PInvoke. All examples using hid_t assume a declaration like this

#if HDF5_VER1_10
using hid_t = System.Int64;
#else
using hid_t = System.Int32;
#endif

at the top of the source file.

Recipes in the cookbook currently include Attributes, String Input/Output, and Iteration.