Home »
.Net »
C# Programs
C# program to demonstrate the binary minus (-) operator with TimeSpan structure
Here, we are going to demonstrate the binary minus (-) operator with TimeSpan structure in C#.Net.
Submitted by Nidhi, on April 21, 2021
Here, we will learn the use of a binary minus (-) operator with an instance of TimeSpan structure. Here, binary '-' operator is overloaded using operator overloading. This operator overloaded method returns subtraction of two instances of TimeSpan.
Syntax:
TimeSpan TimeSpan.operator-(TimeSpan timeSpan1,TimeSpan timeSpan2);
Parameter(s):
- timeSpan1: timeSpan1 to be minuend.
- timeSpan2: timeSpan2 to be subtrahend.
Return value:
This method returns subtraction of two instances of TimeSpan.
Program:
The source code to demonstrate the binary minus (-) 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 timespan1 = new TimeSpan(2, 0, 0);
TimeSpan timespan2 = new TimeSpan(0, 90, 0);
Console.WriteLine(timespan1-timespan2);
}
}
Output:
00:30:00
Press any key to continue . . .
C# TimeSpan Programs »