Apollo3zehn / PureHDF

A pure .NET library that makes reading and writing of HDF5 files (groups, datasets, attributes, ...) very easy.
MIT License
52 stars 18 forks source link

Gracefully handle properties with no setters #132

Open Blackclaws opened 1 month ago

Blackclaws commented 1 month ago

My datatypes sometimes have properties that calculate based on other properties for convenience.

While this is no problem on the serialization side of things. Reading such a compound type throws an exception because no setter can be found for the property.

My expectation would be that the missing setter is gracefully ignored.

Blackclaws commented 1 month ago

Potentially related to https://github.com/Apollo3zehn/PureHDF/issues/117