- AddTimeSpan Add(TimeSpan ts) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- CompareToint CompareTo(TimeSpan ts) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Daysint Days() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- DurationTimeSpan Duration() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Equalsbool Equals(TimeSpan ts) 
- Hoursint Hours() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Millisecondsint Milliseconds() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Minutesint Minutes() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- NegateTimeSpan Negate() 
- Secondsint Seconds() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Tickslong Ticks() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- ToStringstring ToString() 
- TotalDaysdouble TotalDays() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- TotalHoursdouble TotalHours() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- TotalMillisecondsdouble TotalMilliseconds() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- TotalMinutesdouble TotalMinutes() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- TotalSecondsdouble TotalSeconds() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opBinaryTimeSpan opBinary(TimeSpan ts) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opCmplong opCmp(TimeSpan ts) 
- /// operate "==" | "!=" => opCmp
        static bool opBinary(string op)(TimeSpan t1, TimeSpan t2) if(op == "==" || op == "!=")
        {
            switch (op)
            {
                case "==":
                    return t1._ticks == t2._ticks;
                    break;
                case "!=":
                    return t1._ticks != t2._ticks;
                    break;
                default:
                    return true;
                    break;
            }
        } 
- Compareint Compare(TimeSpan t1, TimeSpan t2) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- Equalsbool Equals(TimeSpan t1, TimeSpan t2) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- FromDaysTimeSpan FromDays(double value) 
- FromHoursTimeSpan FromHours(double value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- FromMillisecondsTimeSpan FromMilliseconds(double value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- FromMinutesTimeSpan FromMinutes(double value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- FromSecondsTimeSpan FromSeconds(double value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- From_ticksTimeSpan From_ticks(long value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- TryParsebool TryParse(string input, string formatProvider, TimeSpan result) 
- ZeroTimeSpan Zero() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opBinaryTimeSpan opBinary(TimeSpan t1, TimeSpan t2) 
- Undocumented in source. Be warned that the author may not have intended to support it.