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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0082-5.cs
blob
a90fa8cab96cc0590c9a758d12c54a845a1f4ee0
1
// CS0082: A member `Test.get_Value()' is already reserved
2
// Line: 7
3
4
public partial class
Test
5
{
6
public string
get_Value
()
{ return null; }
7
}
8
9
public partial class
Test
10
{
11
public string
Value
{
12
get
{ }
13
}
14
}