A while back a project I'm working on (and all other projects in the solution) were switched over to .Net 3.5. I'm trying to make use of Guid.TryParse which rocked up in .Net 3.5. When I try to use it I get the error:
'System.Guid' does not contain a definition for 'TryParse'
The MSDN docs clearly show that TryParse exists in .Net 3.5, but I'm unable to use it. I tried manually referencing the specific version of mscorlib, but visual studio refused. What might be causing this behaviour?