CSharp examples for System:DateTime Year
Last Date Of Year
using System.Globalization; using System;//from w w w . ja v a2 s.co m public class Main{ public static DateTime LastDateOfYear(this DateTime date) { return new DateTime(date.Year, 12, 31); } }