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
I would go with TryParse. It doesn't throw an exception.
TryParse