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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0082-3.cs
blob
79e09cdeccecb0c7ffda621d19a29b6335d434bf
1
// CS0082: A member `Test.set_Item(int, string)' is already reserved
2
// Line : 6
3
4
public class
Test
5
{
6
public string this
[
int
i
] {
7
get
{ return ""; }
8
}
9
public void
set_Item
(
int
i
,
string
s
)
{ }
10
}