19.1.1 Constraints
Commonly, a generic class will do more than just store data based on a type parameter. Often, the generic class will want to invoke methods on objects whose type is given by a type parameter. For example, an Add method in a Dictionary
Public Class Dictionary
IF (key.compareto (x) <0) {...} // error, no compareto method ...}}
Since the type argument specified for K could be any type, the only members that can be assumed to exist on the key parameter are those declared by type object, such as Equals, GetHashCode, and ToString; a compile-time error therefore occurs in the EXAMPLE ABOVE. IT IS of Course Possible To Cast The Key Parameter To A Type That Contains a Compareto Method. For Example, The Key Parameter Could Be Cast To IComparable:
Public Class Dictionary
IF ((iComparable) key) .compareto (x) <0) {...} ...}}
While this solution works, it requires a dynamic type check at run-time, which adds overhead. It furthermore defers error reporting to run-time, throwing an InvalidCastException if a key does not implement IComparable.