编译器错误 CS1910
“type”类型的参数不适用于 DefaultParameterValue 特性
对于类型为对象的形参, DefaultParameterValueAttribute 的实参必须是 null
、整型、浮点型、 bool
、 string
、 enum
或 char
。 参数不能为 Type 类型或任何数组类型。
下面的示例会生成 CS1910:
// CS1910.cs
// compile with: /target:library
using System.Runtime.InteropServices;
public interface ISomeInterface
{
void Bad1([DefaultParameterValue(typeof(object))] object o); // CS1910
void Bad2([DefaultParameterValue(new int[] { 1, 2 })] int[] arr); // CS1910
}