About 3,830 results
Open links in new tab
  1. How to Generate a UUID in C# - Delft Stack

    Feb 2, 2024 · The article explores UUIDs (Universally Unique Identifiers) in C#, covering their significance and practical applications …

  2. .net - How can I generate UUID in C# - Stack Overflow

    Dec 12, 2011 · You will probably want to do System.Guid.NewGuid ().ToString ("B").ToUpper () if you want to be compatible with …

  3. Generate a UUID in C#

    Quickly and easily generate individual or bulk sets of universally unique identifiers (UUIDs).

  4. Generate UUID in C#: 4 Practical Methods with Example Code | UUID Generator

    This comprehensive guide explores multiple approaches to generate UUIDs in C# applications, from basic implementations to …

  5. Generate UUID / GUID in C# - .NET Examples

    Jul 11, 2026 · For implementation context, continue with GUID Generator, UUID vs GUID, and UUID v7. These pages cover the …

  6. Guid.NewGuid Method (System) | Microsoft Learn

    The method creates a Version 4 Universally Unique Identifier (UUID) as described in RFC 4122, Sec. 4.4. The returned Guid is …

  7. Generate UUIDs in C# | Code Example - Generate-Random.org

    Learn how to generate UUIDs (GUIDs) in C# using System.Guid. Complete examples for .NET UUID generation with best practices.

  8. How to Generate UUID / GUID in C# and .NET - WildandFree Tools

    C# and .NET use the term GUID (Globally Unique Identifier) — it is the same standard as UUID, same 128-bit format. Guid.NewGuid …

  9. Generate UUID (GUID) in C# — Guid.NewGuid () Guide & .NET

    How to generate a UUID (GUID) in C# using Guid.NewGuid (). Includes .NET Entity Framework Core model, ASP.NET Core …

  10. Generate UUID/GUID in C# — Code Examples & Best Practices | UUID

    For new C# projects, we recommend starting with UUID v4 for simplicity and upgrading to UUID v7 if you need time-sorted identifiers …