Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
share|improve this question
5  
in terms of what ? – raym0nd Aug 2 '11 at 17:25
2  
You can also use : Guid.TryParse() – Patrick Desjardins Aug 2 '11 at 17:28

4 Answers

up vote 11 down vote accepted

Quick look in the Reflector reveals that both are pretty much equivalent.

public Guid(string g)
    {
        if (g == null)
        {
            throw new ArgumentNullException("g");
        }
        this = Empty;
        GuidResult result = new GuidResult();
        result.Init(GuidParseThrowStyle.All);
        if (!TryParseGuid(g, GuidStyles.Any, ref result))
        {
            throw result.GetGuidParseException();
        }
        this = result.parsedGuid;
    }

    public static Guid Parse(string input)
    {
        if (input == null)
        {
            throw new ArgumentNullException("input");
        }
        GuidResult result = new GuidResult();
        result.Init(GuidParseThrowStyle.AllButOverflow);
        if (!TryParseGuid(input, GuidStyles.Any, ref result))
        {
            throw result.GetGuidParseException();
        }
        return result.parsedGuid;
    }
share|improve this answer
Thanks for the response. I was really looking for "is their a difference in how they work". – brennazoon Aug 2 '11 at 18:58

I would go with TryParse. It doesn't throw an exception.

share|improve this answer
5  
I would not consider that a reason as such. There are scenarios where you want an exception and scenarios where you don't. It's more a matter of choosing the appropriate method depending on the scenario. – 0xA3 Aug 2 '11 at 17:33
+1 with a db that might have an empty string, this is an easy way to parse the guid and get Guid.Empty if the string is empty. – ashes999 Jan 6 '12 at 16:05

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 Guid.Empty before attempting the parse. However, the effective code is identical.

That being said, if the Guid is coming from user input, then Guid.TryParse would be better than either option. If this Guid is hard coded, and always valid, either of the above are perfectly reasonable options.

share|improve this answer

If you're using .NET 4, then Guid.TryParse is better. I don't think there is much difference between Guid.Parse and new Guid

http://msdn.microsoft.com/en-us/library/system.guid.tryparse.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.