Date Time C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
    public class DateFunctions
    {
        /// 
        /// Gets the days in year.
        /// 

        /// The date.
        /// 
        public static int GetDaysInYear(DateTime date)
        {
            if (date.Equals(DateTime.MinValue))
            {
                return -1;
            }
            DateTime thisYear = new DateTime(date.Year, 1, 1);
            DateTime nextYear = new DateTime(date.Year + 1, 1, 1);
            return (nextYear - thisYear).Days;
        }
    }
}