web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Interesting Tips: Guid without dash

Community Member Profile Picture Community Member
Easy way to return a GUID without dash:-
Guid.ToString("N")
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.

Comments

*This post is locked for comments