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

cs0592-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48f7900c79a93fecb776ad2cddd56a43303d063a (plain)
1
2
3
4
5
6
7
8
9
10
// cs0592 :  Attribute 'IndexerName' is not valid on this declaration type. It is valid on 'property' declarations only.
// Line : 6

using System.Runtime.CompilerServices;

[IndexerName("XXX")]
class A {
        public static void Main () { }
        
}