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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs1729-6.cs
blob
0b7d4cc9dbad17292a2d2d4daf7c64e4acd15db8
1
// CS1729: The type `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a constructor that takes `4' arguments
2
// Line: 5
3
4
class
MainClass
{
5
[
System
.
Runtime
.
CompilerServices
.
IndexerName
(
"A"
,
""
,
""
,
""
)]
6
int this
[
int
index
] {
7
get
{
8
return
0
;
9
}
10
}
11
12
}
13