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.
if(Request.QueryString["UserId"] !== WebSecurity.CurrentUserId){ Response.Redirect("~/AdminError"); }
上記の表現のどこが間違っていますか? 助けてください
Compiler Error Message: CS1525: Invalid expression term '=='
余分な=サインがあります。!==C# では合法ではありません!=。
=
!==
!=
コンパイラはこれを一連のトークン!(論理否定) と見なし、演算子の否定は意味をなさない==と不平を言います。==
!
==