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-10.cs
blob
1b999e23fb863efd879fa2664e04db6fc83a5b39
1
// CS0082: A member `ISample.set_Item(int, int)' is already reserved
2
// Line: 6
3
4
public interface
ISample
{
5
int this
[
int
i
]
{ set; }
6
void
set_Item
(
int
a
,
int
b
);
7
}