This is a minor pet peeve of mine that I felt like sharing. Feel free to post a comment if you agree, disagree or have your own pet coding peeve to share with other readers of this blog. I quite often see .NET code that tests for the value of a Boolean to see whether it’s true or false: if (booleanVariable == true) { … } or If isBooleanFunction() = False Then … End If Now while not strictly incorrect, this style is, at least, redundant: a Boolean is by nature true or false, and testing for equality with... Read more →