Date Time C#

using System;
using System.IO;
using System.Collections;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml.Serialization;
namespace FlickrNet
{
    /// 
    /// Internal class providing certain utility functions to other classes.
    /// 

    internal sealed class Utils
    {
        private static readonly DateTime unixStartDate = new DateTime(1970, 1, 1, 0, 0, 0);
        /// 
        /// Converts a  object into a unix timestamp number.
        /// 

        /// The date to convert.
        /// A long for the number of seconds since 1st January 1970, as per unix specification.
        internal static long DateToUnixTimestamp(DateTime date)
        {
            TimeSpan ts = date - unixStartDate;
            return (long)ts.TotalSeconds;
        }
        /// 
        /// Converts a string, representing a unix timestamp number into a  object.
        /// 

        /// The timestamp, as a string.
        /// The  object the time represents.
        internal static DateTime UnixTimestampToDate(string timestamp)
        {
            if (timestamp == null || timestamp.Length == 0) return DateTime.MinValue;
            return UnixTimestampToDate(long.Parse(timestamp));
        }
        /// 
        /// Converts a , representing a unix timestamp number into a  object.
        /// 

        /// The unix timestamp.
        /// The  object the time represents.
        internal static DateTime UnixTimestampToDate(long timestamp)
        {
            return unixStartDate.AddSeconds(timestamp);
        }
    }
}