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

cs3002-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1055c66ae839b9c08bee56d2b5e903d7d823a0cb (plain)
1
2
3
4
5
6
7
8
9
// cs3002.cs: Return type of 'CLSClass.MyDelegate' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

public class CLSClass {
        public delegate uint MyDelegate();
}