Date and time Learn programming C#

Lesson:

Additional Libraries


Exercise:

Date and time


Objetive:

Create a program to display the current date and time with the following format:

Today is 6 of February of 2015. It´s 03:23:12


Code:

using System;
class DateAndTime1
{
    static void Main()
    {
        string day = DateTime.Now.Day.ToString("00");
        string month = GetMonth(DateTime.Now.Month);
        int year = DateTime.Now.Year;
        string time = DateTime.Now.ToLongTimeString();

        Console.WriteLine("Today is {0} of {1} of {2}. It´s {3}.", day, month, year, time);
    }

    static string GetMonth(int numberMonth)
    {
        string[] months =
            new string[] { "January", "February", "March", "April", "May", "June", "July", 
                           "August", "September", "October", "November", "Decenber" };

        return months[numberMonth - 1];
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.