Błąd kompilatora CS1910
Argument typu "type" nie ma zastosowania do atrybutu DefaultParameterValue
W przypadku parametrów, których typem jest obiekt, argumentem DefaultParameterValueAttribute musi być null
typ całkowity, zmiennoprzecinkowa, bool
, , string
enum
lub char
. Argument nie może być typu Type ani dowolnego typu tablicy.
Poniższy przykład generuje 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
}
Opinia o produkcie .NET
.NET to projekt typu open source. Wybierz link, aby przekazać opinię: