Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created March 26, 2010 09:28
Show Gist options
  • Save mookid8000/344709 to your computer and use it in GitHub Desktop.
Save mookid8000/344709 to your computer and use it in GitHub Desktop.
Dictionary<string, bool> usedGuids = new Dictionary<string, bool>();
private string CreateUniqueGuid()
{
string newGuid = Guid.NewGuid().ToString();
if (usedGuids.ContainsKey(newGuid))
{
throw new Exception();
}
usedGuids.Add(newGuid, true);
return newGuid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment