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
tag rc1
[mcs.git]
/
errors
/
gcs0019-5.cs
blob
894a9fda5170f00ba93801654eaa7afed6d0a878
1
// CS0019: Operator `==' cannot be applied to operands of type `method group' and `null'
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
bool
a
=
DelegateMethod
==
null
;
9
}
10
11
static int
DelegateMethod
(
bool
b
)
12
{
13
return
3
;
14
}
15
}