repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0019-10.cs
blob
844bf0e8eb24fc852d7878b85aaba485465af81e
1
// CS0019: Operator `==' cannot be applied to operands of type `object' and `V'
2
// Line: 9
3
4
public class
C
<
V
>
5
{
6
public bool
TryGet
(
V v
)
7
{
8
object
tmp
=
null
;
9
return
tmp
==
v
;
10
}
11
}