using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
public class DateFunctions
{
///
/// Gets the days in month.
///
/// The date.
///
public static int GetDaysInMonth(DateTime date)
{
return DateTime.DaysInMonth(date.Year, date.Month);
}
}
}