BinaryPack
BinaryPack copied to clipboard
The fastest and most memory efficient binary serialization library for .NET Standard 2.1, powered by dynamic IL generation
Hi, the readme says that binarypack supports primary types like string but i dont get it to work with string. it work very well for all other types but string...
In dynamic runtime very often you need to store values in Dictionary variables. These can be serialized without problems, but not deserialized. The original Type is not persistant and the...
Hello! As far as I can see, `BinaryConverter` offers only generic `Deserialize` method. I would, however, like to deserialize bytes to a target type that is known only at runtime....
Hello! Interested in the following question: is it possible to add the ability to exclude fields in the deserialization model? For example: public class InputClass { public int Value1 {...
How does this library manages inheritance in the process of serialization/deserialization? Great work btw.
I would like to use this library to **save/append** the candlestick trading data (OHLCV) into files. After looking at advertised performance I have tried using this library, but it's just...
for code ``` var dataBytes = BinaryConverter.Serialize(dataLong); ``` throws > System.InvalidProgramException: 'Common Language Runtime detected an invalid program.' where `SingleCandlestickLong` ``` public class SingleCandlestickLong { public long Id; public long...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...