CoreConfig.cs 298 B

123456789101112
  1. using System.Configuration;
  2. namespace Masuit.Tools.Config
  3. {
  4. public static class ConfigHelper
  5. {
  6. public static string GetConfigOrDefault(string key, string defaultValue = "")
  7. {
  8. return ConfigurationManager.AppSettings.Get(key) ?? defaultValue;
  9. }
  10. }
  11. }