English | 简体中文
Yet another NBT serializer/deserializer, making serializing/deserializing NBT as easy as JSON.
- .NET 9.0
- Modified-UTF8-Encoding v1.2.2
- Use native types instead of specialized types like NbtCompound;
- Automatically find the best matching type converter;
- Automatically cache reflection results and converters;
- Supports Java Edition NBT, Bedrock Edition NBT and SNBT;
- Support deserialization to object type (default is Dictionary<string, object>);
- Support deserialization to dynamic type (default is ExpandoObject);
- You can use
NbtEntryNameAttribute
to specify the entry name; - You can use
NbtEntryNameAttribute
to specify the entry order; - You can use
NbtIgnoreAttribute
to specify ignore rules; - You can use
NbtConverterAttribute
to specify converters;
- Source generator (to support AOT generation)