This documentation is archived and is not being maintained.
TimeSpan Methods
Visual Studio 2010
The TimeSpan type exposes the following members.
| Name | Description | |
|---|---|---|
|
Add | Returns a new TimeSpan object whose value is the sum of the specified TimeSpan object and this instance. |
|
Compare | Compares two TimeSpan values and returns an integer that indicates whether the first value is shorter than, equal to, or longer than the second value. |
|
CompareTo(Object) | Compares this instance to a specified object and returns an integer that indicates whether this instance is shorter than, equal to, or longer than the specified object. |
|
CompareTo(TimeSpan) | Compares this instance to a specified TimeSpan object and returns an integer that indicates whether this instance is shorter than, equal to, or longer than the TimeSpan object. |
|
Duration | Returns a new TimeSpan object whose value is the absolute value of the current TimeSpan object. |
|
Equals(Object) | Returns a value indicating whether this instance is equal to a specified object. (Overrides ValueType::Equals(Object).) |
|
Equals(TimeSpan) | Returns a value indicating whether this instance is equal to a specified TimeSpan object. |
|
Equals(TimeSpan, TimeSpan) | Returns a value that indicates whether two specified instances of TimeSpan are equal. |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
FromDays | Returns a TimeSpan that represents a specified number of days, where the specification is accurate to the nearest millisecond. |
|
FromHours | Returns a TimeSpan that represents a specified number of hours, where the specification is accurate to the nearest millisecond. |
|
FromMilliseconds | Returns a TimeSpan that represents a specified number of milliseconds. |
|
FromMinutes | Returns a TimeSpan that represents a specified number of minutes, where the specification is accurate to the nearest millisecond. |
|
FromSeconds | Returns a TimeSpan that represents a specified number of seconds, where the specification is accurate to the nearest millisecond. |
|
FromTicks | Returns a TimeSpan that represents a specified time, where the specification is in units of ticks. |
|
GetHashCode | Returns a hash code for this instance. (Overrides ValueType::GetHashCode().) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Negate | Returns a new TimeSpan object whose value is the negated value of this instance. |
|
Parse(String) | Converts the string representation of a time interval to its TimeSpan equivalent. |
|
Parse(String, IFormatProvider) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified culture-specific format information. |
|
ParseExact(String, String, IFormatProvider) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified format and culture-specific format information. The format of the string representation must match the specified format exactly. |
|
ParseExact(String, array<String>, IFormatProvider) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified array of format strings and culture-specific format information. The format of the string representation must match one of the specified formats exactly. |
|
ParseExact(String, String, IFormatProvider, TimeSpanStyles) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified format, culture-specific format information, and styles. The format of the string representation must match the specified format exactly. |
|
ParseExact(String, array<String>, IFormatProvider, TimeSpanStyles) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified formats, culture-specific format information, and styles. The format of the string representation must match one of the specified formats exactly. |
|
Subtract | Returns a new TimeSpan object whose value is the difference between the specified TimeSpan object and this instance. |
|
ToString() | Converts the value of the current TimeSpan object to its equivalent string representation. (Overrides ValueType::ToString().) |
|
ToString(String) | Converts the value of the current TimeSpan object to its equivalent string representation by using the specified format. |
|
ToString(String, IFormatProvider) | Converts the value of the current TimeSpan object to its equivalent string representation by using the specified format and culture-specific formatting information. |
|
TryParse(String, TimeSpan%) | Converts the string representation of a time interval to its TimeSpan equivalent and returns a value that indicates whether the conversion succeeded. |
|
TryParse(String, IFormatProvider, TimeSpan%) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified culture-specific formatting information, and returns a value that indicates whether the conversion succeeded. |
|
TryParseExact(String, String, IFormatProvider, TimeSpan%) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified format and culture-specific format information, and returns a value that indicates whether the conversion succeeded. The format of the string representation must match the specified format exactly. |
|
TryParseExact(String, array<String>, IFormatProvider, TimeSpan%) | Converts the specified string representation of a time interval to its TimeSpan equivalent by using the specified formats and culture-specific format information, and returns a value that indicates whether the conversion succeeded. The format of the string representation must match one of the specified formats exactly. |
|
TryParseExact(String, String, IFormatProvider, TimeSpanStyles, TimeSpan%) | Converts the string representation of a time interval to its TimeSpan equivalent by using the specified format, culture-specific format information, and styles, and returns a value that indicates whether the conversion succeeded. The format of the string representation must match the specified format exactly. |
|
TryParseExact(String, array<String>, IFormatProvider, TimeSpanStyles, TimeSpan%) | Converts the specified string representation of a time interval to its TimeSpan equivalent by using the specified formats, culture-specific format information, and styles, and returns a value that indicates whether the conversion succeeded. The format of the string representation must match one of the specified formats exactly. |
Show: