Ejemplo n.º 1
0
 public static LastManOnEarth getInstance()
 {
     if (singleInstance == null)
     {
         singleInstance = new LastManOnEarth();
     }
     return(singleInstance);
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            LastManOnEarth l = LastManOnEarth.getInstance();

            Console.WriteLine(l.name);
            LastManOnEarth l2 = LastManOnEarth.getInstance();

            Console.WriteLine(l2.name);
        }