Does anybody know which is better to use when converting a string to System.Guid?
var myguid = Guid.Parse("9546482E-887A-4CAB-A403-AD9C326FFDA5");
or
var myguid = new Guid("9546482E-887A-4CAB-A403-AD9C326FFDA5");
|
|
Quick look in the Reflector reveals that both are pretty much equivalent.
|
|||
|
|
I would go with |
|||||||
|
|
Use the version that is the most readable to you. The two are implemented almost exactly the same way. The only real difference is that the constructor initializes itself to That being said, if the |
|||
|
|
|
If you're using .NET 4, then http://msdn.microsoft.com/en-us/library/system.guid.tryparse.aspx |
|||
|
|