我使用这些代码来转换当前日期时间并减去用户在文本框中键入的日期时间。但是在转换时会出错。
PersianCalendar p = new System.Globalization.PersianCalendar();
DateTime date = new DateTime();
date = DateTime.Parse(DateTime.Now.ToShortDateString());
int year = p.GetYear(date);
int month = p.GetMonth(date);
int day = p.GetDayOfMonth(date);
string str = string.Format("{0}/{1}/{2}", year, month, day);
DateTime d1 = DateTime.Parse(str);
DateTime d2 = DateTime.Parse(textBox9.Text);
string s = (d2 - d1).ToString().Replace(".00:00:00", "");
textBox10.Text = (d2 - d1).ToString().Replace(".00:00:00","");
在将 datetime 从 string 转换为 date time 时,此行将报错:DateTime d1 = DateTime.Parse(str);
请帮我解决这个问题。
提前致谢