public static string GetConfigValue(ConfigValues configValue) => ConfigurationManager.AppSettings[configValue.ToString()];
示例#2
0
 public static string GetConfig(ConfigValues config)
 {
     return(GetConfig(config.ToString()));
 }