NormalNBT 0.0.2

dotnet add package NormalNBT --version 0.0.2
NuGet\Install-Package NormalNBT -Version 0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NormalNBT" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NormalNBT --version 0.0.2
#r "nuget: NormalNBT, 0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NormalNBT as a Cake Addin
#addin nuget:?package=NormalNBT&version=0.0.2

// Install NormalNBT as a Cake Tool
#tool nuget:?package=NormalNBT&version=0.0.2

NormalNBT

Small C# library for reading and writing named binary tags

Example:

using NormalNBT;

var outstream = new MemoryStream();
var tag = new NBTcompound("Test nbt", new NBT[]
{
    new NBTbyte("byte tag", 127),
    new NBTintArr("array tag", new List<int>{ 1, 2, 3, 4 }),
    new NBTlist("list tag", new []
    {
        new NBTlong(0),
        new NBTlong(123456),
    })
});
NBT.Write(tag, outstream);

var instream = new MemoryStream(outstream.ToArray());
var newtag   = NBT.Read(instream);

//  Test nbt <compound>: {
//  byte tag <byte>: 127,
//  array tag <int[]>: [1, 2, 3, 4],
//  list tag <list>: [ <long>: 0,  <long>: 123456]
//  }
Console.WriteLine(newtag);
// 123456
Console.WriteLine(newtag["list tag"][1].Value);

If you want to use your own collection, you can pass functions into NBT.Write and NBT.Read

var queue = new Queue<byte>();
var tag   = new NBTcompound("Test nbt", ...);
NBT.Write(tag, queue.Enqueue);
NBT.Read(queue.Dequeue);

Example: Reading compressed level.dat file

var filestream = File.Open("level.dat", FileMode.Open);
var datastream = new GZipStream(filestream, CompressionMode.Decompress);
Console.WriteLine(NBT.Read(datastream));
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.2 412 7/20/2022
0.0.1 379 7/19/2022