Skip to content

Instantly share code, notes, and snippets.

@hvitorino
Created June 6, 2011 18:22
Show Gist options
  • Save hvitorino/1010766 to your computer and use it in GitHub Desktop.
Save hvitorino/1010766 to your computer and use it in GitHub Desktop.
Singleton C#
public sealed class Singleton {
private static Singleton instance;
static Singleton() {
instance = new Singleton();
}
public Singleton Instance {
get { return instance; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment