Skip to content

Instantly share code, notes, and snippets.

@jfromaniello
Created May 4, 2010 21:24
Show Gist options
  • Save jfromaniello/390026 to your computer and use it in GitHub Desktop.
Save jfromaniello/390026 to your computer and use it in GitHub Desktop.
[Test]
public void Something()
{
var a = new Thread(GetOrAdd);
var b = new Thread(GetOrAdd);
a.Start();b.Start();
}
public void GetOrAdd()
{
if(!dic.ContainsKey("a")){
dic["a"] = 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment