Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の使用に違いはありますか
Request.Cookies["Key"].Value
と
Request.Cookies["Key"].ToString()
はい、次のコード ブロックを実行すると、さまざまな出力が示されます。
Request.Cookies.Add(new HttpCookie("Test", "MyValue")); Debug.Print(Request.Cookies["Test"].Value); Debug.Print(Request.Cookies["Test"].ToString());
最初のデバッグ出力には「MyValue」が表示され、2 番目のデバッグ出力には「System.Web.HttpCookie」が表示されます。