Question

I'm on the look-out for any implementations of this new binary data representation.

Was it helpful?

Solution

You can try the .Net 5.0 Extension provided by MS

  <PropertyGroup>
    <TargetFramework>net5.0</TargetFramework>
  </PropertyGroup>

https://www.nuget.org/packages/System.Formats.Cbor/5.0.0

https://docs.microsoft.com/en-us/dotnet/api/system.formats.cbor

https://github.com/dotnet/performance/search?q=cbor

Here you have an sample to write and read:

using System;
using System.Formats.Cbor;

var writer = new CborWriter();
        
writer.WriteStartArray(3);
writer.WriteInt64(DateTimeOffset.UtcNow.ToUnixTimeMilliseconds());
writer.WriteInt32(1);
writer.WriteStartArray(1);
writer.WriteInt32(9);
writer.WriteEndArray();
writer.WriteEndArray();
        
var myByteArray = writer.Encode();
    
    
var reader = new CborReader(data);
    
reader.ReadStartArray();
long unixDT = reader.ReadInt64();
int myInt = reader.ReadInt32();
reader.ReadStartArray();
int myInt2 = reader.ReadInt32();
reader.ReadEndArray();
reader.ReadEndArray();
    
var response = new object[]
    {
        unixDT,
        myInt,
        new object[] { myInt2 }
    };

Cheers

OTHER TIPS

A list of several CBOR implementations can be found at http://cbor.io — this includes a C# implementation.

Dahomey.Cbor

High-performance CBOR serialization framework for .Net

Features

  • Serialization/Deserialization from/to Streams, byte buffer
  • Object Model
  • Mapping to any .Net class
  • Extensible Polymorphism support based on discriminator conventions
  • Extensible Naming conventions
  • Custom converters for not supported types
  • .Net standard 2.0 support

https://github.com/dahomey-technologies/Dahomey.Cbor

As an alternitive you can look at the Nuget-Package

PeterO.Cbor (source: https://github.com/peteroupc/CBOR).

looks (at the moment of writing) maintained and has a lot stars.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top