C# UUID
How to generate a standard UUID (typically v4) in C#, using the standard library or a widely used package.
Code
using System;
Guid id = Guid.NewGuid(); // v4
string s = id.ToString();
Most languages provide v4 (random) out of the box, while v7 or ULID may require a separate library.