Skip to content

v0.1.1

Compare
Choose a tag to compare
@thepigeongenerator 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) and void BinarySerializer.DeserializeArray<T>(byte[] buf). Use byte[] BinarySerializer.SerializeArray<T>(T obj) and void BinarySerializer.Deserialize<T>(byte[] buf) instead.
  • Added a README.md containing some information about the package.