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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0571.cs
blob
44d8f75d6a1aa7cfc3c4e34fefab645218cd9eb0
1
// cs0571.cs: `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
}