标签:gen 一个 调用 bsp 获取 tostring line nbsp string
DataTime? 转换为 DataTime类型 就可以调用 ToString() 自定义格式
@item.CreateDate.GetValueOrDefault().ToString("yyyy-MM-dd");
// 摘要:
// 获取一个值,指示当前的 System.Nullable<T> 对象是否有值。
//
// 返回结果:
// 如果当前的 System.Nullable<T> 对象具有值,则为 true;如果当前的 System.Nullable<T> 对象没有值,则为
// false。
public bool HasValue { get; }
//
// 摘要:
// 检索当前 System.Nullable<T> 对象的值,或该对象的默认值。
//
// 返回结果:
// 如果 System.Nullable<T>.HasValue 属性为 true,则为 System.Nullable<T>.Value 属性的值;否则为当前
// System.Nullable<T> 对象的默认值。默认值的类型为当前 System.Nullable<T> 对象的类型参数,而默认值的值中只包含二进制零。
[TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
public T GetValueOrDefault();
DataTime? 的 GetValueOrDefault() 方法
标签:gen 一个 调用 bsp 获取 tostring line nbsp string
原文地址:http://www.cnblogs.com/cjm123/p/7943918.html