编译器错误 CS1728
不能将委托绑定到 “member”,因为它是 “type” 的成员
不能将委托绑定到 Nullable
值类型的成员。
以下示例生成 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
}
}