Created
July 18, 2019 05:54
-
-
Save semsuddin/fb27eee932c877b56815a4a15fb869b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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