Q:

C# program to demonstrate the binary plus (+) operator with TimeSpan structure

0

Syntax:

TimeSpan TimeSpan.operator+(TimeSpan timeSpan1,TimeSpan timeSpan2);

Parameter(s):

  • timeSpan1: timeSpan1 to be added.
  • timeSpan2: timeSpan2 to be added.

Return value:

This method returns the addition of two instances of TimeSpan.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to demonstrate the binary 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 timespan1 = new TimeSpan(2, 0, 0);
        TimeSpan timespan2 = new TimeSpan(0, 90, 0);
        
        Console.WriteLine(timespan1+timespan2); 
    }
}

Output:

03:30:00
Press any key to continue . . .

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now