how to parse a UUID in C#

Posted by frosty on Stack Overflow See other posts from Stack Overflow or by frosty
Published on 2010-04-03T13:43:19Z Indexed on 2010/04/03 13:53 UTC
Read the original article Hit count: 234

Filed under:

On success of a web service i receive a UUID.

ie "C3D668DC-1231-3902-49318B046AD48A5F"

I need to validate this. I've tried

Guid responseId = new Guid("C3D668DC-1231-3902-49318B046AD48A5F");

But it doesn't parse? is there another .net method i should use.

© Stack Overflow or respective owner

Related posts about c#