Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
 public static LogWin Instance()
 {
     if (_instance == null)
     {
         lock (SyncObj)
         {
             if (_instance == null)
             {
                 _instance = new LogWin();
             }
         }
     }
     return(_instance);
 }
Exemplo n.º 2
0
 public static LogWin Instance()
 {
     if (_instance == null)
         lock (SyncObj)
         {
             if (_instance == null)
                 _instance = new LogWin();
         }
     return _instance;
 }