Home »
.Net »
C# Programs
C# - TimeSpan.UnaryPlus(TimeSpan) Operator with Example
In this tutorial, we will learn about the C# TimeSpan.UnaryPlus(TimeSpan) operator with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.UnaryPlus(TimeSpan) Operator
The TimeSpan.UnaryPlus(TimeSpan) is overloaded using operator overloading. This operator overloaded method returns the specified instance of TimeSpan.
Syntax
TimeSpan TimeSpan.operator+(TimeSpan timeSpan);
Parameter(s)
- timeSpan: Specified instance of TimeSpan.
Return Value
This method returns a specified instance of TimeSpan.
Exception(s)
C# Example of TimeSpan.UnaryPlus(TimeSpan) Operator
The source code to demonstrate the unary plus (+) operator with 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 timeInterval = new TimeSpan(4, 10, 15);
Console.WriteLine(+timeInterval);
}
}
Output
04:10:15
Press any key to continue . . .
C# TimeSpan Programs »