using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication24
{
public struct kong<T> where T : struct
{
T value;
}
class Program
{
static void Main(string[] args)
{
System.Nullable<int> i1 =new Nullable<int>();
i1 = null;
kong<int> bb = new kong<int>();
bb = null;//错误 1 无法将 Null 转换成“ConsoleApplication24.kong<int>”,因为它是一种不可为 null 值的类型
}
}
}
函数式编程
幕布斯7119047