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

CSharp examples for System:DateTime Year

Description

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

Demo Code


using System;//from   www .  j a va  2s .  c om

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

Related Tutorials