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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0633-4.cs
blob
8524d4b84a55f3a9da8301d0f81661e85dec1854
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
}