Interesting Tips: Guid without dash
Views (952)
Easy way to return a GUID without dash:-
Guid.ToString("N")
Guid id = new Guid(string here); //back to guid
Guid id = new Guid(string here); //back to guid
Guid test=Guid.NewGuid();
Console.WriteLine(test.ToString("N"));
Console.WriteLine(test.ToString());
This was originally posted here.
*This post is locked for comments