Time Span Type
Last changed: jonathan_hardwick@hotmail.com-64.122.205.71

.
Summary
TimeSpan objects represent a period of time (e.g., 3 days and 4 hours)
TimeSpan inherits from Object

Members

Instance Members

Object Add(Object span)
Add the specified TimeSpan to this TimeSpan (and answer a new one)
Integer CompareTo(Object obj)
Compare this TimeSpan with another TimeSpan and answer -1, 0 or +1 depending on whether is is less than, equal to or greater than the other TimeSpan
Integer Days
Answer the number of days represented by this TimeSpan
Object Equals(Object obj)
Determine whether this object is equal to another object
Integer Hours
Answer the number of hours represented by this TimeSpan
Integer Milliseconds
Answer the number of milliseconds represented by this TimeSpan
Integer Minutes
Answer the number of minutes represented by this TimeSpan
Integer Seconds
Answer the number of seconds represented by this TimeSpan
Object Subtract(Object span)
Subtract the specified TimeSpan to this TimeSpan (and answer a new one)

Type Members

Object Instance(Integer days {optional}, Integer hours {optional}, Integer minutes {optional}, Integer seconds {optional}, Integer milliseconds {optional})
Answer an instance of TimeSpan

Discussion

Examples

With