小编典典

ASP.NET MVC全局变量

c#

如何在ASP.NET MVC中声明全局变量?


阅读 1258

收藏
2020-05-19

共1个答案

小编典典

public static class GlobalVariables
{
    // readonly variable
    public static string Foo
    {
        get
        {
            return "foo";
        }
    }

    // read-write variable
    public static string Bar
    {
        get
        {
            return HttpContext.Current.Application["Bar"] as string;
        }
        set
        {
            HttpContext.Current.Application["Bar"] = value;
        }
    }
}
2020-05-19