Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 787 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 787 Bytes

.NET Binary Deserializer

help

Quick usage examples

  • Decode .NET binary (auto detect encoding) into XML:
python /home/jbr/github/dotnet-binary-deserializer --bin2xml -f <input_netbin_filename> -o <output_filename>
  • Convert XML into .NET Binary in standard encoding - format [MC-NBFS]:
python /home/jbr/github/dotnet-binary-deserializer --xml2mcnbfs -f <input_xml_filename> -o <output_filename>
  • Convert XML into .NET Binary using in-band dictionary / StringTable - format [MC-NBFSE]:
python /home/jbr/github/dotnet-binary-deserializer --xml2mcnbfse -f <input_xml_filename> -o <output_filename>

example_mcnbfse

Overview

Deserialization

TODO

Serialization

TODO