Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1501-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 846bda88f3f5290dfb7659d9a93db68661982e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1501-6.cs: No overload for method `System.Runtime.CompilerServices.IndexerNameAttribute' takes `4' arguments
// Line: 5

class MainClass {
        [System.Runtime.CompilerServices.IndexerName("A", "", "", "")]
        int this [int index] {
                get {
                        return 0;
                }
        }
    
}