Convert String to GUID | Quickie

To convert a string to GUID you have to do the following:

string text = “6937e459-f1bd-4a20-ab10-28ff0010c15b”;
Guid myGuid = new Guid(text);

Happy Converting 🙂

No Responses

Leave a Reply

Your email address will not be published. Required fields are marked *