- Add
TimeSpan Add(TimeSpan ts)
Undocumented in source. Be warned that the author may not have intended to support it.
- CompareTo
int CompareTo(TimeSpan ts)
Undocumented in source. Be warned that the author may not have intended to support it.
- Days
int Days()
Undocumented in source. Be warned that the author may not have intended to support it.
- Duration
TimeSpan Duration()
Undocumented in source. Be warned that the author may not have intended to support it.
- Equals
bool Equals(TimeSpan ts)
- Hours
int Hours()
Undocumented in source. Be warned that the author may not have intended to support it.
- Milliseconds
int Milliseconds()
Undocumented in source. Be warned that the author may not have intended to support it.
- Minutes
int Minutes()
Undocumented in source. Be warned that the author may not have intended to support it.
- Negate
TimeSpan Negate()
- Seconds
int Seconds()
Undocumented in source. Be warned that the author may not have intended to support it.
- Ticks
long Ticks()
Undocumented in source. Be warned that the author may not have intended to support it.
- ToString
string ToString()
- TotalDays
double TotalDays()
Undocumented in source. Be warned that the author may not have intended to support it.
- TotalHours
double TotalHours()
Undocumented in source. Be warned that the author may not have intended to support it.
- TotalMilliseconds
double TotalMilliseconds()
Undocumented in source. Be warned that the author may not have intended to support it.
- TotalMinutes
double TotalMinutes()
Undocumented in source. Be warned that the author may not have intended to support it.
- TotalSeconds
double TotalSeconds()
Undocumented in source. Be warned that the author may not have intended to support it.
- opBinary
TimeSpan opBinary(TimeSpan ts)
Undocumented in source. Be warned that the author may not have intended to support it.
- opCmp
long 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;
}
}
- Compare
int Compare(TimeSpan t1, TimeSpan t2)
Undocumented in source. Be warned that the author may not have intended to support it.
- Equals
bool Equals(TimeSpan t1, TimeSpan t2)
Undocumented in source. Be warned that the author may not have intended to support it.
- FromDays
TimeSpan FromDays(double value)
- FromHours
TimeSpan FromHours(double value)
Undocumented in source. Be warned that the author may not have intended to support it.
- FromMilliseconds
TimeSpan FromMilliseconds(double value)
Undocumented in source. Be warned that the author may not have intended to support it.
- FromMinutes
TimeSpan FromMinutes(double value)
Undocumented in source. Be warned that the author may not have intended to support it.
- FromSeconds
TimeSpan FromSeconds(double value)
Undocumented in source. Be warned that the author may not have intended to support it.
- From_ticks
TimeSpan From_ticks(long value)
Undocumented in source. Be warned that the author may not have intended to support it.
- TryParse
bool TryParse(string input, string formatProvider, TimeSpan result)
- Zero
TimeSpan Zero()
Undocumented in source. Be warned that the author may not have intended to support it.
- opBinary
TimeSpan opBinary(TimeSpan t1, TimeSpan t2)
Undocumented in source. Be warned that the author may not have intended to support it.