访问可以更改的全局常量

时间:2013-06-18 18:36:32

标签: asp.net-mvc entity-framework-4

在php中我可以创建一个.inf文件,其中包含一些定义的常量并将其包含在代码中,然后如果有人更改其中的constantg,它将被更新使用。

类似于.net的方法是什么?

1 个答案:

答案 0 :(得分:0)

我认为这将是web.config文件中的appSettings

<system.web>
    <appSettings>
        <add key="somekey" value="somevalue" />
    </appSettings>
</system.web>

使用ConfigurationManager.AppSettings

访问它
string setting = System.Configuration.ConfigurationManager.AppSettings["somekey"];

(请注意,您需要添加对System.Configuration.dll的引用才能生效。)