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

cs3003-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1f9ee4d2fd24f1752c0563aa8842ec904ed69f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3003.cs: Type of 'CLSClass.MyEvent' is not CLS-compliant
// Line: 8

[assembly:System.CLSCompliant (true)]

[System.CLSCompliant (false)]
public delegate void MyDelegate ();

public class CLSClass {
        public event MyDelegate MyEvent;
}