Источник:
http://eastoceantechnical.blogspot.c...hout-dash.html
==============
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());
Источник:
http://eastoceantechnical.blogspot.c...hout-dash.html