li

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

2010年11月8日

摘要: 第一种方法 Nullable<DateTime> DateTimeIsNull = null; DateTime dt; dt = DateTimeIsNull.Value; 第二种方法 DateTime? DateTimeIsNull; DateTime dt; DateTimeIsNull = null; dt = DateTimeIsNull.Value; 自己的疑问: 这种... 阅读全文

posted @ 2010-11-08 10:21 lining 阅读(3569) 评论(4) 推荐(1) 编辑