Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created June 16, 2022 12:49
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 lgolubyev/616ed1f96a2b0e16b429ceded562bba4 to your computer and use it in GitHub Desktop.
Save lgolubyev/616ed1f96a2b0e16b429ceded562bba4 to your computer and use it in GitHub Desktop.
public sealed class Singleton
{
private static readonly Lazy<Singleton> LazyInstance =
new Lazy<Singleton>(() => new Singleton());
private Singleton()
{
}
public static Singleton Instance => LazyInstance.Value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment