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

cs3016.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5b82da009a05efc7fcd8251539f18da4daaab83 (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: 7

using System;
[assembly:CLSCompliant (true)]

[CLSAttribute (new bool [] {true, false})]
public class CLSAttribute: Attribute {
        public CLSAttribute () {
        }
        
        public CLSAttribute(bool[] array) {
        }
}