Experiences of an Inland Empire Dad

Converting String GUID to System.Guid

How to convert a GUID in a string to s System.GUID works well, thanks to the magic of constructors:

System.Guid guid = new System.Guid(strGUIDInString);