Skip to content

Instantly share code, notes, and snippets.

@abhinavgalodha
Created May 31, 2020 01:01
Show Gist options
  • Save abhinavgalodha/cfa908e5d01565ffade5aa8089ec9469 to your computer and use it in GitHub Desktop.
Save abhinavgalodha/cfa908e5d01565ffade5aa8089ec9469 to your computer and use it in GitHub Desktop.
public class Thing
{
public int ThreadSafeMethod(string parameter1)
{
int number; // each thread will have its own variable for number.
number = parameter1.Length;
return number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment