Tiny library to fast convert object into byte array
.NET framework already expose a similar library to reach the same result, BitConverter, but it is very slow.
In situation where the speed of convertion between Object to Byte Array (or vice versa) is a priority, then bitconverter is not so good.
This library is very useful when used on scenario like:
- Message Queue
- Marshaling
- Binary Serialization