Exemplo n.º 1
0
 public static WrongSingleton GetOn()
 {
     if (objectWrongSingleton == null)
     {
         counter++;
         objectWrongSingleton = new WrongSingleton();
     }
     return(objectWrongSingleton);
 }
Exemplo n.º 2
0
 public static void Delete()
 {
     objectWrongSingleton = null;
 }