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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0023-16.cs
blob
9cfa92ad3c94ddca4659d45255bfe98989007c58
1
// CS0023: The `.' operator cannot be applied to operand of type `method group'
2
// Line: 14
3
4
using
System
;
5
6
public class
Test
7
{
8
public static void
E
()
9
{
10
}
11
12
public static void
Main
()
13
{
14
Console
.
WriteLine
(
E
.
x
);
15
}
16
}