You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
497 B
C#

/*
* C# Program to Add Two Dates
*/
using System;
namespace DateAndTime
{
class Program
{
static int Main()
{
DateTime SDate = new DateTime(2010, 10, 7);
Console.WriteLine("Starting Date : {0}", SDate);
DateTime EDate = startDate.AddDays(10);
Console.WriteLine("Ending Date : {0}\n", EDate);
Console.ReadLine();
return 0;
}
}
}
/*
Starting Date : 10/7/2010 12:00:00 AM
Ending Date : 10/17/2010 12:00:00 AM