NDueTime.DoubleExtensions.Seconds C# (CSharp) Method

Seconds() public static method

public static Seconds ( this seconds ) : System.TimeSpan
seconds this
return System.TimeSpan
        public static TimeSpan Seconds(this double seconds)
        {
            return TimeSpan.FromSeconds(seconds);
        }