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

cs3016-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84db73dd9e3e9542889a1a9fd1c8378d0ed3e60c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3016.cs: Arrays as attribute arguments are not CLS-compliant
// Line: 5

using System;
[assembly:CLSAttribute (new bool [] {true, false})]
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
        public CLSAttribute () {
        }
        
        public CLSAttribute(bool[] array) {
        }
}