Skip to content

Instantly share code, notes, and snippets.

@zzandy
Created August 6, 2018 14:26
Show Gist options
  • Save zzandy/eeaef75823f253d63b813d4d3b934c5c to your computer and use it in GitHub Desktop.
Save zzandy/eeaef75823f253d63b813d4d3b934c5c to your computer and use it in GitHub Desktop.
class UsedInMultipleThreads
{
private int counter;
public void MethodWithoutLocks() {
this.counter = 800;
}
public void MethodWithLocks() {
lock(this) {
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment