Tagged Questions
6
votes
4answers
366 views
Operator '==' can't be applied to type T?
I thought this method was valid but I was wrong:
static void Equals<T>(T x, T y)
{
return x == y; //operator == can't be applied to type T
}
After reading the specifiation (ยง7.2.4 in ...