111,119
社区成员
发帖
与我相关
我的任务
分享 string time = "";
DateTime.TryParse(txtPublishDateD.Text, out time);
if (string.IsNullOrEmpty(time))
{
//为空
return;
}
else
{
sqlDataAdapter9.UpdateCommand.Parameters[4].Value = time;
} string dt = null;
if (!DateTime.TryParse("要转的字符串",out dt))
//失败
else
//成功,并直接用 dt 不要再 dt= ……