コード例 #1
0
 public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
コード例 #2
0
 public static AutoLookViewModel GetInstance()
 {
     if (instance == null)
     {
         instance = new AutoLookViewModel();
     }
     return(instance);
 }