0

这是我在这里的第一篇文章。该应用程序是一个 winform 我已将应用程序的文化设置为 en-GB 但是在检查和保存时我将其转换回 en-US 我得到这个错误字符串没有被重新识别为有效的 DateTime

CultureInfo currentCulture = new CultureInfo("en-US");
string strCheckDate = CheckConvertCulture(input);
string date = DateTime.Now.ToString("M/d/yyyy");

if (DateTime.ParseExact(strCheckDate,currentCulture.ToString(),null)> DateTime.ParseExact(date,currentCulture.ToString(),null))
{
      return false;
}
else
{
      return true;
}

我在这里做错了什么

这是我的 converCurrentCulture 代码

string strdate = string.Empty;
CultureInfo currentCulture = CultureInfo.CurrentCulture;
System.Globalization.DateTimeFormatInfo usDtfi = new System.Globalization.CultureInfo("en-US", false).DateTimeFormat;
if (currentCulture.ToString() != "en-US")
{
    strdate = Convert.ToDateTime(Culturedate).ToString(usDtfi.ShortDatePattern);
}
else
{
    strdate = Culturedate;
}

    return strdate;

这是我为了让它工作而做的,但是如果用户选择了一个无效的日期,比如 29/02/2013,它是否会工作不确定,

CultureInfo currentCulture = new CultureInfo("en-GB");
string date = DateTime.Now.ToString("dd/MM/yyyy", currentCulture);

由于应用程序默认为en-GB

if (DateTime.Parse(input) > DateTime.Parse(date))
{
  return false;
}
else
{
  return true;
}
4

1 回答 1

0

如果这实际上是您的代码:

CultureInfo currentCulture = new CultureInfo("en-US");
string strCheckDate = CheckConvertCulture(input);

if (DateTime.ParseExact(strCheckDate,currentCulture.ToString(),null)

那么问题出在你的 ParseExact 中,它转化为

if (DateTime.ParseExact(strCheckDate, "en-US", null))

您最好以特定格式指定日期并解析:

string format = "MM/dd/yyyy HH:mm:ss";
string strCheckDate = input.ToString(format);

// See note below about "why are you doing this?    
if (DateTime.ParseExact(strCheckDate, format))

我最大的问题是——你为什么要这样做?如果您有两个日期,为什么要将它们都转换为字符串,然后将它们转换回日期以进行比较?

return (input > date);

请参阅MSDN 文档以正确使用 DateTime.ParseExact。

于 2013-03-15T12:10:19.430 回答