NDueTime.TimeSpanExtensions.And C# (CSharp) Method

And() public static method

public static And ( this first, System.TimeSpan second ) : System.TimeSpan
first this
second System.TimeSpan
return System.TimeSpan
        public static TimeSpan And(this TimeSpan first, TimeSpan second)
        {
            return first + second;
        }