我希望我的程序验证日期格式是否为mm/dd/yyyy
. 我不想使用任何 throw/catch 块。
class FunWithScheduling
{
public void AddView()
{
...
...
Console.WriteLine("Enter the Date Scheduled For the Meeting:");
string Date = Console.ReadLine();
DateTime date = DateTime.Parse(Date);
string formatted = date.ToString("MM-dd-yyyy");
if (Date != formatted)
Console.WriteLine("Invalid Choice");
...
...
}
static void Main()
{
FunWithScheduling a = new FunWithScheduling();
a.AddView();
}
}