Created
November 15, 2011 13:08
-
-
Save shytikov/1367041 to your computer and use it in GitHub Desktop.
Simplest C# Singleton
This file contains 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
// .NET Singleton | |
sealed class Singleton | |
{ | |
private Singleton() {} | |
public static readonly Singleton Instance = new Singleton(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment