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

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

using System;
[assembly:CLSCompliant(true)]

public delegate CLSDelegate Delegate ();
    
[Serializable]
[CLSCompliant (false)]
public class CLSDelegate {
}