摘要: 众所周知,Nullable是允许对一些值类型的数据类型直接赋值Null(VB.NET中为Nothing)的特殊值类型。如果你反编译这个值类型,将会看到这样一个局面——[C#]public struct Nullable<T> where T: struct{ private bool hasValue; internal T value; public Nullable(T value) { this.value = value; this.hasValue = true; } public bool HasValue { ... 阅读全文
posted @ 2012-06-04 14:16 Serviceboy 阅读(770) 评论(0) 推荐(0) 编辑