1. ホーム
  2. c#

ASP.NET MVCのグローバル変数

2023-10-05 07:30:27

質問

ASP.NET MVCでグローバル変数を宣言するにはどうしたらよいでしょうか。

どのように解決するのですか?

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;
        }
    }
}