TimeSpan.Subtraction(TimeSpan, TimeSpan) Operador

Definición

Resta un TimeSpan especificado de otro TimeSpan especificado.

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

Parámetros

t1
TimeSpan

Minuendo.

t2
TimeSpan

Sustraendo.

Devoluciones

Objeto cuyo valor es el resultado del valor de t1 menos el valor de t2.

Excepciones

El valor devuelto es menor que TimeSpan.MinValue o mayor que TimeSpan.MaxValue.

Ejemplos

En el ejemplo siguiente se usa el TimeSpan operador de resta para calcular la longitud total del día laborable semanal. También usa el TimeSpan operador de suma para calcular el tiempo total de los saltos diarios antes de usarlo en una operación de resta para calcular el tiempo de trabajo diario real total.

var startWork = new TimeSpan(08,00,00);
var endWork = new TimeSpan(18,30,00);
var lunchBreak = new TimeSpan(1, 0, 0);
var breaks = new TimeSpan(0, 30, 0);

Console.WriteLine("Length of work day: {0}", 
                  endWork - startWork);
Console.WriteLine("Actual time worked: {0}",
                  endWork - startWork - (lunchBreak + breaks));                  

// The example displays the following output:
//     Length of work day: 10:30:00
//     Actual time worked: 09:00:00
let startWork = TimeSpan(08,00,00)
let endWork = TimeSpan(18,30,00)
let lunchBreak = TimeSpan(1, 0, 0)
let breaks = TimeSpan(0, 30, 0)

printfn $"Length of work day: {endWork - startWork}"
printfn $"Actual time worked: {endWork - startWork - (lunchBreak + breaks)}"

// The example displays the following output:
//     Length of work day: 10:30:00
//     Actual time worked: 09:00:00
Module Example
   Public Sub Main()
      Dim startWork As New TimeSpan(08,00,00)
      Dim endWork As New TimeSpan(18,30,00)
      Dim lunchBreak As New TimeSpan(1, 0, 0)
      Dim breaks As New TimeSpan(0, 30, 0)
      
      Console.WriteLine("Length of work day: {0}", 
                        endWork - startWork)
      Console.WriteLine("Actual time worked: {0}",
                        endwork - startwork - (lun\chBreak + breaks))                  
   End Sub
End Module
' The example displays the following output:
'     Length of work day: 10:30:00
'     Actual time worked: 09:00:00

Comentarios

El método equivalente para este operador es TimeSpan.Subtract(TimeSpan)

Se aplica a