v0.1.1
thepigeongenerator
released this
30 Nov 20:43
·
16 commits
to main
since this release
Changelog
- Now serializing / deserializing, utilising reflection.
- More verbose errors if something goes wrong
- Fixed an issue with nested structs not being serialized properly.
- Fixed an issue with arrays not being serialized properly when placed inside a struct.
- Removed
byte[] BinarySerializer.SerializeArray<T>(T obj)
andvoid BinarySerializer.DeserializeArray<T>(byte[] buf)
. Usebyte[] BinarySerializer.SerializeArray<T>(T obj)
andvoid BinarySerializer.Deserialize<T>(byte[] buf)
instead. - Added a
README.md
containing some information about the package.