/FastConverter

Tiny library to fast convert object into byte array

Primary LanguageVisual BasicMIT LicenseMIT

FastConverter

Tiny library to fast convert object into byte array

Why

.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.

When

This library is very useful when used on scenario like:

  • Message Queue
  • Marshaling
  • Binary Serialization