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

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

using System;
[assembly: CLSCompliant(true)]

public delegate void MyDelegate();

public class CLSClass {
        public event MyDelegate _myEvent;
}