예제 #1
0
 protected void SaveConfig <T>(
     PaConfigType cfgType,
     T config)
 {
     SaveConfig(config, ConfigPathHelper.RelativeUserSettingPath(cfgType));
 }
예제 #2
0
 public void SetToDefault(PaConfigType cfgType)
 {
     SetToDefault(
         ConfigPathHelper.AbsoluteFactoryUserSettingPath(cfgType),
         ConfigPathHelper.AbsoluteUserSettingPath(cfgType));
 }
예제 #3
0
 public T GetConfig <T>(PaConfigType cfgType)
 {
     return(GetConfig <T>(ConfigPathHelper.RelativeUserSettingPath(cfgType)));
 }