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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0082-5.cs
blob
02fc454ac7a4bb00150985696f074dd24ae65a19
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
}