Exemplo n.º 1
0
 public static SystemEnvironment ResetInstance()
 {
     PathInfo info = PathInfo.CreateInstance();
     singletonInstance = AbstractConfig.Load(typeof(SystemEnvironment), ExtraTypes, info.SystemEnvironmentSetup) as SystemEnvironment;
     if (singletonInstance == null)
     {
         singletonInstance = new SystemEnvironment();
         singletonInstance.Initialize();
     }
     return singletonInstance;
 }