代码之家  ›  专栏  ›  技术社区  ›  lance

强类型调用web.config而不复制属性名?

  •  2
  • lance  · 技术社区  · 15 年前

    总结:


    细节: 在我的代码中,我尽量减少字符串的使用,我不喜欢定义两次。

    作为这两个习惯的补充,我将AppSettings的用法(及其字符串)限制为一个类,我在整个项目中都引用这个类。AppSettings类公开公共属性:

        12   public static string DateFormatString {
        13       get {
        14           return ConfigurationManager.AppSettings["DateFormatString"];
        15       }
        16   }
    

    如何保留此类并防止属性名称的重复(第12行和第14行)?

    7 回复  |  直到 15 年前
        1
  •  3
  •   Talljoe    15 年前
        2
  •  2
  •   Jamie Ide    15 年前
        3
  •  1
  •   Jason Watts    15 年前
        4
  •  1
  •   Andrew Siemer    15 年前
        5
  •  1
  •   John Rasch    15 年前
        6
  •  1
  •   SolutionYogi Eric Lippert    15 年前
        7
  •  1
  •   cedd    6 年前