blob: 844bf0e8eb24fc852d7878b85aaba485465af81e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0019: Operator `==' cannot be applied to operands of type `object' and `V'
// Line: 9
public class C<V>
{
public bool TryGet (V v)
{
object tmp = null;
return tmp == v;
}
}
|