Errore del compilatore CS1728
Impossibile associare il delegato a 'member' perché è un membro di 'type'
Non è possibile associare delegati a membri dei tipi valore Nullable
.
L'esempio seguente genera l'errore CS1728:
// CS1728.cs
class Test
{
delegate T GetT<T>();
delegate T GetT1<T>(T t);
delegate bool E(object o);
delegate int I();
delegate string S();
static void Main()
{
int? x = null;
int? y = 5;
GetT<int> d1 = x.GetValueOrDefault; // CS1728
GetT<int> d2 = y.GetValueOrDefault; // CS1728
GetT1<int> d3 = x.GetValueOrDefault; // CS1728
GetT1<int> d4 = y.GetValueOrDefault; // CS1728
}
}
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.
Feedback su .NET
.NET è un progetto di open source. Selezionare un collegamento per fornire feedback: