The Blog
To convert a string to a GUID, do the following:
In C#:
Guid MyGuid = new Guid(stringValue);
And in VB .NET:
Dim MyGuid As Guid = New Guid(stringValue) Best Regards,Kevin McNeishMicrosoft .NET MVPPresident, Oak Leaf Enterprises, Inc.Chief Architect of the MM .NET Application Framework
Best Regards,
Kevin McNeishMicrosoft .NET MVPPresident, Oak Leaf Enterprises, Inc.Chief Architect of the MM .NET Application Framework
Thanks, man. I've been searching everywhere for that!