编译器警告(等级 1)CS3015
“method signature”没有只使用符合 CLS 类型的可访问的构造函数
若要符合公共语言规范 (CLS),特性类的参数列表不可包括数组。 有关 CLS 符合性的详细信息,请参阅语言独立性和与语言无关的组件。
以下示例生成 C3015。
// CS3015.cs
// compile with: /target:library
using System;
[assembly:CLSCompliant(true)]
public class MyAttribute : Attribute
{
public MyAttribute(int[] ai) {} // CS3015
// try the following line instead
// public MyAttribute(int ai) {}
}