摘要: datetime是值类型,是不允许设为null的。微软为了解决这个问题,为值类型引入了可空类型。如:int型对应的是Nullable<int> 简写是:int?DateTime对应的是Nullable<DateTime>,简写是DateTime? 阅读全文
posted @ 2013-03-21 10:57 双魂人生 阅读(981) 评论(0) 推荐(0)