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.

15 lines
300 B
C#

/*
* C# Program to Add Two TimeSpan
*/
using System;
class Program
{
static void Main()
{
TimeSpan s1 = new TimeSpan(5, 0, 0);
TimeSpan s2 = new TimeSpan(2, 0, 0);
TimeSpan s3 = s1.Add(s2);
Console.WriteLine(s3);
Console.Read();
}
}