Skip to content

Instantly share code, notes, and snippets.

@amrkarthik
Created May 1, 2018 12:18
Show Gist options
  • Save amrkarthik/3649f9c71926b1886ba35e2f59166bd7 to your computer and use it in GitHub Desktop.
Save amrkarthik/3649f9c71926b1886ba35e2f59166bd7 to your computer and use it in GitHub Desktop.
Singleton design patter implementation example.
public class Singleton
{
private static Singleton instance;
private Singleton() {}
public static Singleton Instance
{
get{
if(instance == null){
instance = new Singleton();
}
return instance;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment