public static void Main()
Singleton object1 = Singleton.Instance();
Singleton object2 = Singleton.Instance();
Console.WriteLine("They're the same instance!");
private static Singleton myInstance;
public static Singleton Instance()
myInstance = new Singleton();