111,098
社区成员




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);//方法三