Returns last day of the previous year. - CSharp System

CSharp examples for System:DateTime Year

Description

Returns last day of the previous year.

Demo Code

/********************************************************************
 *  FulcrumWeb RAD Framework - Fulcrum of your business             *
 *  Copyright (c) 2002-2010 FulcrumWeb, ALL RIGHTS RESERVED         *
 *                                                                  *
 *  THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED      *
 *  FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE        *
 *  COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE       *
 *  AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT  *
 *  AND PERMISSION FROM FULCRUMWEB. CONSULT THE END USER LICENSE    *
 *  AGREEMENT FOR INFORMATION ON ADDITIONAL RESTRICTIONS.           *
 ********************************************************************/
using System.Globalization;
using System;/*from  w  w w. j  a  v  a  2  s .  c om*/

public class Main{
        //-------------------------------------------------------------------------
    /// <summary>
    /// Returns last day of the previous year.
    /// </summary>
    /// <param name="date">date to return result for</param>
    /// <returns>last day of the previous year</returns>
    static public DateTime GetLastPrevYearDay(DateTime date)
    {
      return new DateTime(date.Year - 1, 12, 31);
    }
}

Related Tutorials