Skip to content

Instantly share code, notes, and snippets.

@ideaflare
Created January 22, 2016 13:56
Show Gist options
  • Select an option

  • Save ideaflare/daf7bb099c3d7c45f966 to your computer and use it in GitHub Desktop.

Select an option

Save ideaflare/daf7bb099c3d7c45f966 to your computer and use it in GitHub Desktop.
Singleton pattern in C# 6
public static SharedResource Instance { get; } = new SharedResource();
private SharedResource() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment