D. 现在,问题在于检查过时的现时价值和类型......但正在出现错误......
方法:
public static DateTime? ToNullableDateTime(string stringValue)
{
DateTime dateValue;
if (DateTime.TryParse(stringValue, out dateValue)) { return dateValue; }
else { return DateTime.MinValue; }
}
a. 在我的物体类别中采用这种方法:
Objects<DateTime?>.ToNullableDateTime(((Label)gvRow.FindControl("lblCommitmentDate")).Text);
原文:
不可含蓄地转换类型系统。 时间? 日期: 存在明确的转变(如果你没有 cast子?)