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

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

using System;
[assembly:CLSCompliant(true)]

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

[CLSAttribute(new string[] { "", "" })]
public interface ITest {
}