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 值的类型 } }}
- 2 回答
- 0 关注
- 740 浏览
添加回答
举报
0/150
提交
取消