Suppose I define two tuples:
Tuple tuple1 = new Tuple(1.0f, 2.0f, 3.0f, 4.0f); Tuple
== for Tuple will only see the references and hence you will see that it is false.
==
PS: Recommended way is to do something like:
var tuple1 = Tuple.Create(1.0f, 2.0f, 3.0f, 4.0f)