Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 30, 2021 07:43
Show Gist options
  • Save ssukhpinder/2f48350e01dc45028f945dc8166170cf to your computer and use it in GitHub Desktop.
Save ssukhpinder/2f48350e01dc45028f945dc8166170cf to your computer and use it in GitHub Desktop.
public class ThreadSafeSingleton
{
private static readonly ThreadSafeSingleton _instance = new ThreadSafeSingleton();
public static ThreadSafeSingleton Instance
{
get
{
return _instance;
}
}
public ThreadSafeSingleton()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment