Skip to content

Instantly share code, notes, and snippets.

@redtower
Last active October 30, 2019 01:05
Show Gist options
  • Save redtower/1786899 to your computer and use it in GitHub Desktop.
Save redtower/1786899 to your computer and use it in GitHub Desktop.
$ guid.exe
4b1d4ca7f22b49e284753a034e673629
using System; // Guid,Console
class GuidSample {
public static void Main(string[] args) {
String id = Guid.NewGuid().ToString("N");
Console.WriteLine(id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment