1

可能重复:
可空类型不是可空类型?
如何检查一个对象是否可以为空?

请参阅下面的代码。有没有办法通过传递 n 作为参数来获得类似 System.Nullable`1[System.Int32] 的东西?

static void Test()
{
  List<int> l = new List<int>();
  Nullable<int> n = new Nullable<int>( 1 );
  Console.WriteLine( l.GetType() ); // will output System.Collections.Generic.List`1[System.Int32]
  Console.WriteLine( n.GetType() ); // will output System.Int32. Why won't output something like System.Nullable`1[System.Int32] ?
}
4

0 回答 0