* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3016.cs
blobf5b82da009a05efc7fcd8251539f18da4daaab83
1 // cs3016.cs: Arrays as attribute arguments are not CLS-compliant
2 // Line: 7
4 using System;
5 [assembly:CLSCompliant (true)]
7 [CLSAttribute (new bool [] {true, false})]
8 public class CLSAttribute: Attribute {
9 public CLSAttribute () {
12 public CLSAttribute(bool[] array) {