Home »
.Net »
C# Programs
C# program to demonstrate the unary plus (+) operator with TimeSpan structure
Here, we are going to demonstrate the unary plus (+) operator with TimeSpan structure in C#.Net.
Submitted by Nidhi, on April 21, 2021
Here, we will learn the use of the unary plus (+) operator with an instance of TimeSpan structure. The unary '+' operator 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):
Program:
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 »