TimeSpan.Addition(TimeSpan, TimeSpan) Operator
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Dodaje dwa określone TimeSpan wystąpienia.
public:
static TimeSpan operator +(TimeSpan t1, TimeSpan t2);
public static TimeSpan operator + (TimeSpan t1, TimeSpan t2);
static member ( + ) : TimeSpan * TimeSpan -> TimeSpan
Public Shared Operator + (t1 As TimeSpan, t2 As TimeSpan) As TimeSpan
Parametry
- t1
- TimeSpan
Interwał po raz pierwszy do dodania.
- t2
- TimeSpan
Drugi interwał czasu do dodania.
Zwraca
Obiekt, którego wartość jest sumą wartości i t1
t2
.
Wyjątki
TimeSpan Wynik jest mniejszy niż TimeSpan.MinValue lub większy niż TimeSpan.MaxValue.
Uwagi
Metoda Addition definiuje operator dodawania dla TimeSpan wartości. Umożliwia stosowanie kodu takiego jak następujący:
TimeSpan time1 = new TimeSpan(1, 0, 0, 0); // TimeSpan equivalent to 1 day.
TimeSpan time2 = new TimeSpan(12, 0, 0); // TimeSpan equivalent to 1/2 day.
TimeSpan time3 = time1 + time2; // Add the two time spans.
Console.WriteLine(" {0,12}\n + {1,10}\n {3}\n {2,10}",
time1, time2, time3, new String('_', 10));
// The example displays the following output:
// 1.00:00:00
// + 12:00:00
// __________
// 1.12:00:00
open System
let time1 = TimeSpan(1, 0, 0, 0) // TimeSpan equivalent to 1 day.
let time2 = TimeSpan(12, 0, 0) // TimeSpan equivalent to 1/2 day.
let time3 = time1 + time2 // Add the two time spans.
printfn $" {time1,12}\n + {time2,10}\n {String('_', 10)}\n {time3,10}"
// The example displays the following output:
// 1.00:00:00
// + 12:00:00
// __________
// 1.12:00:00
Dim time1 As New TimeSpan(1, 0, 0, 0) ' TimeSpan equivalent to 1 day.
Dim time2 As New TimeSpan(12, 0, 0) ' TimeSpan equivalent to 1/2 day.
Dim time3 As TimeSpan = time1 + time2 ' Add the two time spans.
Console.WriteLine(" {0,12}{3} + {1,10}{3} {4}{3} {2,10}", _
time1, time2, time3, vbCrLf, New String("_"c, 10))
' The example displays the following output:
' 1.00:00:00
' + 12:00:00
' __________
' 1.12:00:00
Języki, które nie obsługują operatorów niestandardowych, mogą zamiast tego wywoływać metodę Add .
Równoważną metodą dla tego operatora jest TimeSpan.Add(TimeSpan)