标签: c#
我在代码中遇到过这个问题并且想知道它是为了什么?
thistime =!thistime;
答案 0 :(得分:9)
这是C#的logical negation unary operator。它基本上是布尔值的“反面”。如果之前thistime为false,则会将其设置为true。
thistime