using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
public class DateFunctions
{
///
/// Gets the end of month.
///
/// The date.
///
public static DateTime GetEndOfMonth(DateTime date)
{
return new DateTime(new DateTime(date.Year, date.Month + 1, 1).Ticks - 1);
}
}
}