bool foo = true; // Do this? if (foo) { } // Or this? if (foo == true) { }
我喜欢他们中的一个和另一个我的同事.结果是一样的,但是(更)正确的是什么?
c#
c# ×1