I'm new to C# and because of this I found an annoying problem which stop me from making my homework. What's the difference between IComparable
and IComparable<K>
?
One of my friend used something like this Vector_d<T> where T:IComparable
, but everywhere else in source files he used T:IComparable<T>
. When I asked him, he didn't know to answer so I have to search somewhere else.