Based on the result of my checking, I would like to exit out from the console application decently without throwing any exceptions.

static void Main(string[] args)
{

//Check to see if today is a US Holiday.
If(Holiday.IsUSHoliday(DateTime.Today));
//close the program and how to do that?

}