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 (myString=!"-1") { //Do things }
しかし、それは失敗します。私はもう試した
if(myString.Distinct("-1")) { //Do things }
しかし、それも機能しません。
これを試して:
if(myString != "-1")
オペランド is!=および not=!
!=
=!
使用することもできますEquals
Equals
if(!myString.Equals("-1"))
!myStringの前に注意してください
!
これは次のようになります。
if (myString != "-1") { //Do things }
あなたの等号と感嘆符は間違った方法です。