TimeSpan.opOpAssign

Scales this TimeSpan and assigns the result to this instance.

  1. TimeSpan opOpAssign(TimeSpan t)
  2. TimeSpan opOpAssign(long v)
    struct TimeSpan
    opOpAssign
    (
    string op
    )
    (
    long v
    )
    if (
    op == "*" ||
    op == "/"
    )

Parameters

v long

A multipler or divisor to use for scaling

Return Value

Type: TimeSpan

A copy of this instance after scaling

Meta