14 lines
355 B
C#
Raw Normal View History

// CS1729: The type `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a constructor that takes `4' arguments
// Line: 5
class MainClass {
[System.Runtime.CompilerServices.IndexerName("A", "", "", "")]
int this [int index] {
get {
return 0;
}
}
}