repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0082-2.cs
blob
755412bf995b6f38eeb6e4bf2a632f18116d485c
1
// CS0082: A member `Test.get_Value()' is already reserved
2
// Line: 6
3
4
public class
Test
5
{
6
public string
Value
{
7
set
{ }
8
}
9
public string
get_Value
()
{ return null; }
10
}