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