Skip to content

Instantly share code, notes, and snippets.

@semsuddin
Created July 18, 2019 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save semsuddin/fb27eee932c877b56815a4a15fb869b6 to your computer and use it in GitHub Desktop.
Save semsuddin/fb27eee932c877b56815a4a15fb869b6 to your computer and use it in GitHub Desktop.
public sealed class InstanceHandler
{
public SomeOtherClass SomeOtherObject;
static InstanceHandler()
{
}
private InstanceHandler()
{
}
public static InstanceHandler Instance { get; } = new InstanceHandler();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment