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

cs3005-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76c6b5c33d8ea4bf6cd4cc4fb080255db1550e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3005.cs: Identifier 'CLSClass.Event_A' differing only in case is not CLS-compliant
// Line: 13

[assembly:System.CLSCompliant(true)]

public delegate void MyDelegate(int i);

public class Base {
        protected event System.ResolveEventHandler Event_a;
}

public class CLSClass: Base {
        public event MyDelegate Event_A;
}