I'd like to know if there is a big loss of performance if instead of using
if (MyBoolean)
i use
if (MyBoolean == true)
I have always been told that == boolean was a stupid instructino because all the langages understand if(bool) but i wonder if there is a real difference between those two way of evaluating a boolean expression.
Thank you for reading