Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1.27 KB

README.md

File metadata and controls

26 lines (16 loc) · 1.27 KB

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