Returns a DateTime representing the specified day in January in the specified year. - CSharp System

CSharp examples for System:DateTime Year

Description

Returns a DateTime representing the specified day in January in the specified year.

Demo Code


using System;/*from ww w .  ja v a2  s  .c o m*/

public class Main{
        /// <summary>
        /// Returns a DateTime representing the specified day in January
        /// in the specified year.
        /// </summary>
        public static DateTime January(this int day, int year)
        {
            return new DateTime(year, 1, day);
        }
}

Related Tutorials