li

ning
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

DateTime 赋空值

Posted on 2010-11-08 10:21  lining  阅读(3569)  评论(4编辑  收藏  举报

第一种方法

Nullable<DateTime> DateTimeIsNull = null;

DateTime dt;

dt = DateTimeIsNull.Value;

 

 

第二种方法

DateTime? DateTimeIsNull;

DateTime dt;

DateTimeIsNull = null;

dt = DateTimeIsNull.Value;

 

自己的疑问:

这种用法会是装箱拆箱操作码?影响性能吗?