Skip to content

Instantly share code, notes, and snippets.

@extstopcodepls
Created March 10, 2014 10:09
Show Gist options
  • Save extstopcodepls/9462377 to your computer and use it in GitHub Desktop.
Save extstopcodepls/9462377 to your computer and use it in GitHub Desktop.
How to validate guid
private bool ValidateGuid(Guid guid)
{
Guid outGrid = Guid.Empty;
if (!Guid.TryParse(guid.ToString(), out outGrid))
{
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment