예제 #1
0
 internal static void RestoreAppConfig()
 {
     if (File.Exists(ChoGlobalApplicationSettings.Me.ApplicationConfigFilePath))
     {
         if (_appXmlDocument != null && _appXmlDocument.HasIncludeComments)
         {
             ChoXmlDocument.ContractNSave(_appXmlDocument, ChoGlobalApplicationSettings.Me.ApplicationConfigFilePath);
         }
     }
 }
 public static void RestoreAppConfig()
 {
     if (File.Exists(AppConfigFilePath))
     {
         if (_appXmlDocument != null && _appXmlDocument.HasIncludeComments)
         {
             ChoXmlDocument.ContractNSave(_appXmlDocument, AppConfigFilePath);
         }
     }
 }