What is the difference between these two ways of converting a string to System.Guid? Is there a reason to choose one over the other?
System.Guid
var myguid
In .Net framework v1.1 exists only 1 way -> var myguid = new Guid("9546482E-887A-4CAB-A403-AD9C326FFDA5");
Guid.Parse became available later.