Home »
.Net »
C# Programs
C# - TimeSpan.Duration() Method with Example
In this tutorial, we will learn about the C# TimeSpan.Duration() method with its definition, usage, syntax, and example.
By Nidhi
TimeSpan.Duration() Method
The TimeSpan.Duration() method is used to return an object of TimeSpan structure that contains the absolute value of the current object.
Syntax
TimeSpan TimeSpan.Duration();
Parameter(s)
This method does not contain any parameters.
Return Value
This method returns an integer value to indicate comparison.
C# Example of TimeSpan.Duration() Method
The source code to demonstrate the use of Duration() method of TimeSpan structure is given below. The given program is compiled and executed successfully.
using System;
class TimeSpanDemo {
//Entry point of Program
static public void Main() {
TimeSpan timeSpan = new TimeSpan(-75643);
Console.WriteLine("Absolute value of timeSpan is: " + timeSpan.Duration());
}
}
Output
Absolute value of timeSpan is: 00:00:00.0075643
Press any key to continue . . .
C# TimeSpan Programs »