repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0019-46.cs
blob
3924c532ea65e6136fce7e418be7c19917ae4d2f
1
// CS0019: Operator `==' cannot be applied to operands of type `method group' and `method group'
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
bool
a
=
DelegateMethod
==
DelegateMethod
;
9
}
10
11
static int
DelegateMethod
(
bool
b
)
12
{
13
return
3
;
14
}
15
}