111,119
社区成员
发帖
与我相关
我的任务
分享 string str = "2017-08-31";
row["CREATE_TIME"] = str;
row["CREATE_TIME"] = DateTime.Parse(str);//方法一
row.SetField("CREATE_TIME", str);//方法二
row["CREATE_TIME"] = Convert.ToDateTime(str);//方法三