Skip to main content

C#: Program #9 (Time)

using System;

namespace Working_With_Time
{
    class Program
    {
        static void Main(string[] args)
        {
            TimeSpan SnackTime = new TimeSpan(3,0,0);
            Console.WriteLine("My snack time on Mon-Thr is {0}",SnackTime);

            SnackTime=SnackTime.Add(new TimeSpan(2,30,0));
            Console.WriteLine("My snack time on Friday is {0}", SnackTime);

            SnackTime = SnackTime.Subtract(new TimeSpan(1, 0, 0));
            Console.WriteLine("My snack time on Sat and Sun is {0}", SnackTime);

            Console.ReadKey();
        }
    }
}

Comments

Popular posts from this blog