-1

我对 C# 很陌生。我正在编写一个约会计划程序,我想在其中提供日期和时间值作为来自控制台的字符串,然后我想将其解析为DateTime格式。但是通过这样做,我得到了

“System.FormatException” - 字符串未被识别为有效的日期时间

这是我的一段代码,

string Format = "dd/MM/yyyy hh:mm tt";
Console.WriteLine("Enter the appointment date and time in(dd/MM/yyyy hh:mm AM/PM) format");
User_Input = Console.ReadLine();
Date_Time = DateTime.ParseExact(User_Input,Format,CultureInfo.InvariantCulture);

当我完全按照格式提供输入时,例如 23/11/2012 08:30 pm.. 我得到了上述异常。我想输出日期时间AM/PM。我做错了什么?

4

1 回答 1

3

这个问题有点奇怪,因为您的格式字符串适用于给定的输入字符串(在所有文化中)并且您希望以相同的格式输出。也许有人输入23/11/2012 18:30 pm了,而不是与 AM/PM 指示符一起使用。

string format = "dd/MM/yyyy hh:mm tt";
DateTime dateTime = DateTime.ParseExact("23/11/2012 08:30 pm", format, CultureInfo.InvariantCulture);
string output = dateTime.ToString(format, CultureInfo.InvariantCulture);

输出:23/11/2012 08:30 PM

demonstration

请注意,您始终可以使用DateTime.TryParseExact来验证用户输入。

于 2013-09-25T08:00:53.223 回答