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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs1976.cs
blob
e03e2f36fc728bc56b6eb761d2eab4961e94e7d9
1
// CS1976: The method group `Main' cannot be used as an argument of dynamic operation. Consider using parentheses to invoke the method
2
// Line: 9
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
dynamic
d
=
null
;
9
d
(
Main
);
10
}
11
}