当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# TimeSpan Add()用法及代码示例


在这里,我们将了解 TimeSpan 结构的 Add() 方法。此方法用于返回一个对象,该对象包含指定的 TimeSpan 对象与当前 TimeSpan 对象的总和。

用法:

TimeSpan TimeSpan.Add(TimeSpan obj);

参数:

  • obj:一个对象,其值要与当前对象的值相加。

返回值:

此方法返回指定对象和当前对象的值的相加。

异常:

  • System.OverflowException

程序:

下面给出了演示使用 TimeSpan 结构的 Add() 方法的源代码。给定的程序已成功编译并执行。

using System;

class TimeSpanDemo
{
    //Entry point of Program
    static public void Main()
    {
        //Here we create timespan with day,hour,minutes and seconds
        TimeSpan timespan1 = new TimeSpan(4,2, 20, 0);
        TimeSpan timespan2 = new TimeSpan(2,2, 10, 0);
        TimeSpan timespan3;

        timespan3 = timespan1.Add(timespan2);

        //Sum of timespan1 and timespan2 
        Console.WriteLine("Sum of timespan1 and timespan2:"+timespan3); 
    }
}

输出:

Sum of timespan1 and timespan2:6.04:30:00
Press any key to continue . . .



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the use of Add() method of TimeSpan structure。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。