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
/
cs0571.cs
blob
6b58089fdba257bde31f02ad7d7c172e90c67f94
1
// CS0571: `MainClass.Value.get': cannot explicitly call operator or accessor
2
// Line: 12
3
4
class
MainClass
{
5
static int
Value
{
6
get
{
7
return
1
;
8
}
9
}
10
11
public static void
Main
() {
12
int value
=
get_Value
();
13
}
14
}