Date Time C#

/**********************************************************
 * Author    : Riwut Libinuko (cakriwut@gmail.com)
 * Blog      : http://blog.libinuko.com
 * Copyright : Riwut Libinuko (c) 2009 - 2010
 * 
 **********************************************************/
using System;
using System.Collections.Generic;
using System.Text;
namespace ScheduleAlertJob
{
    /// 
    /// Utility class to provide simple operations for other components.
    /// 

    public class Utility
    {
        /// 
        /// Calculate date, based on specified time and unit
        /// 

        /// Reference date of the event
        /// Array of reminder time. The value is comming from SPFieldMultiChoice
        /// 
        public static List CalculateDate(DateTime refDate, string[] reminderTime)
        {
            return CalculateDate(refDate, reminderTime, true);
        }
        /// 
        /// Calculate date, based on specified time and unit
        /// 

        /// Reference date of the event
        /// Array of reminder time. The value is comming from SPFieldMultiChoice
        /// True to calculate time before refDate, false to reverse calculation
        /// 
        public static List CalculateDate(DateTime refDate, string[] reminderTimeCollection, bool beforeTime)
        {
            List resultDates = new List();
            foreach (string remindTime in reminderTimeCollection)
            {
                string[] reminderTime = remindTime.Split(new char[] { '(', ')' });
                string spanTime = reminderTime[0].Trim().Substring(0, reminderTime[0].Trim().Length - 2);
                double spanTimeVal;
                if (double.TryParse(spanTime, out spanTimeVal))
                {
                    if (beforeTime)
                        spanTimeVal = -spanTimeVal;
                    if (reminderTime[0].Trim().EndsWith("mi"))
                    {
                        resultDates.Add(refDate.AddMinutes(spanTimeVal));
                    }
                    else if (reminderTime[0].Trim().EndsWith("hr"))
                    {
                        resultDates.Add(refDate.AddHours(spanTimeVal));
                    }
                    else if (reminderTime[0].Trim().EndsWith("dy"))
                    {
                        resultDates.Add(refDate.AddDays(spanTimeVal));
                    }
                    else if (reminderTime[0].Trim().EndsWith("wk"))
                    {
                        resultDates.Add(refDate.AddDays(((double)7 * spanTimeVal)));
                    }
                    else if (reminderTime[0].Trim().EndsWith("mo"))
                    {
                        resultDates.Add(refDate.AddMonths((int)spanTimeVal));
                    }
                    else if (reminderTime[0].Trim().EndsWith("yr"))
                    {
                        resultDates.Add(refDate.AddYears((int)spanTimeVal));
                    }
                }
            }
            resultDates.Sort();
            return resultDates;
        }
        /// 
        /// Find date greater than TODAY
        /// 

        /// DateTime to compare
        /// 
        public static bool DateGreaterThanToday(DateTime dateTime)
        {
            if (dateTime.CompareTo(DateTime.Now) > 0)
                return true;
            else
                return false;
        }
    }
}