Пример #1
0
 public static W20Factory Instance()
 {
     if (count < 2)
     {
         instance = new W20Factory();
     }
     else
     {
         Console.WriteLine(instance.GetType().Name + " instance limit reached!");
         return(null);
     }
     count++;
     return(instance);
 }