The main goal of this library is to provide primitive types like Uuid, Hex converter, etc.


Keywords
Dodo, Hex, Uuid, tooling
License
MIT
Install
Install-Package Dodo.Primitives -Version 1.1.0

Documentation

Dodo.Primitives

Latest release codecov

Library provides .NET primitive types:

Project goal

The main goal is Uuid implementation according to the RFC9562.

.NET provides System.Guid struct which is special case of the RFC9562 implementation. System.Guid has little-endian layout for the first 8 bytes (int32, int16, int16).

Our goal is to provide Uuid fully compliant with RFC9562 (big-endian layout) and preserve System.Guid-like behaviour. Also project contains generators to create Uuid version 7.

  var uuid = Uuid.CreateVersion7();

Project documentation