英語で読む

次の方法で共有


コンパイラ エラー CS1910

型 'type' の引数は DefaultParameterValue 属性には適用できません

型がオブジェクトのパラメーターの場合、 DefaultParameterValueAttribute の引数は null、整数型、浮動小数点、 boolstringenum、または 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
}