I\'m trying the following:
T value1 = el.value; // it\'s of type T already T value2 = default(T); if (value1 != value2) // gives the following error: Operato
What's wrong with this?
if (!value1.Equals(value2))
Should be "cross object".. :)