TimeSpan.opDiv

Divide the TimeSpan by the specified amount. This should not be used to convert to a different unit. Use the unit accessors instead. This should only be used as a scaling mechanism. For example, if you have a timeout and you want to sleep for half the timeout, you would use timeout / 2.

  1. TimeSpan opDiv(long v)
    struct TimeSpan
    opDiv
    (
    long v
    )
  2. long opDiv(TimeSpan t)

Return Value

Type: TimeSpan

A new TimeSpan that is divided by v

Meta