Date Time C#

using System;
namespace DreamControl.Helper
{
    public class Common
    {
        /// 
        /// Convert time from seconds to ticks
        /// 

        /// 
        /// 
        public static long SecondToTicks(double second)
        {
            return (long)Math.Round(second * Math.Pow(10, 9) / 100);
        }
    }
}