Ler em inglês

Partilhar via


Erro do compilador CS1910

O argumento do tipo 'type' não é aplicável para o atributo DefaultParameterValue

Para parâmetros cujo tipo é objeto, o argumento do DefaultParameterValueAttribute deve ser null, um tipo integral, um ponto flutuante, bool, , stringenum, ou char. O argumento não pode ser do tipo Type ou de qualquer tipo de matriz.

Exemplo

O exemplo a seguir gera 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
}