Skip to content

Instantly share code, notes, and snippets.

@EifelMono
Last active March 20, 2019 12:18
Show Gist options
  • Save EifelMono/2d52d5bdad2fd0298b9fc61d17e07e02 to your computer and use it in GitHub Desktop.
Save EifelMono/2d52d5bdad2fd0298b9fc61d17e07e02 to your computer and use it in GitHub Desktop.
Sample for Guid and the Length of the Guid
using System;
using System.Linq;
public class Program
{
public static void Main()
{
var guid= Guid.NewGuid();
Console.WriteLine($"Guid={guid}");
Console.WriteLine($"Length={guid.ToString().Length}");
}
}
@EifelMono
Copy link
Author

.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment