Last active
January 18, 2016 21:59
-
-
Save yakaas/e38db9a15fcbcde05f27 to your computer and use it in GitHub Desktop.
Singleton - fully lazy instantiation
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
| // http://csharpindepth.com/Articles/General/Singleton.aspx#nested-cctor | |
| public sealed class Singleton | |
| { | |
| private Singleton() | |
| { | |
| } | |
| public static Singleton Instance { get { return Nested.instance; } } | |
| private class Nested | |
| { | |
| // Explicit static constructor to tell C# compiler | |
| // not to mark type as beforefieldinit | |
| static Nested() | |
| { | |
| } | |
| internal static readonly Singleton instance = new Singleton(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment