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
/
cs0633-4.cs
blob
a38a6bbe17103c3b2173e491187f7dddbbb059a6
1
// CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
public class
C
7
{
8
[
IndexerName
(
"class"
)]
9
public string this
[
int
i
] {
10
set
{ }
11
}
12
}