Library provides .NET primitive types:
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();