編譯器錯誤 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
}