This is a purely academic question, but what\'s the difference between using == and .Equals within a lambda expression and which one is preferred?
Code exam
This is more prominent in the Java world really. Basically '==' is operator overloading and .Equals() is the base method on Object class.