摘要:
第一种方法 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) 编辑