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-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0111-14.cs
blob
69bc54c5d97b45d717c4f6424e86db6560ec7192
1
// cs0111-14.cs: `Test.set_Item(int, string)' is already defined. Rename this member or use different parameter types
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
}