TimeSpan.FromMicroseconds Method

Definition

Overloads

FromMicroseconds(Double)

Returns a TimeSpan that represents a specified number of microseconds.

FromMicroseconds(Int64)

FromMicroseconds(Double)

Source:
TimeSpan.cs
Source:
TimeSpan.cs
Source:
TimeSpan.cs

Returns a TimeSpan that represents a specified number of microseconds.

public:
 static TimeSpan FromMicroseconds(double value);
public static TimeSpan FromMicroseconds (double value);
static member FromMicroseconds : double -> TimeSpan
Public Shared Function FromMicroseconds (value As Double) As TimeSpan

Parameters

value
Double

A number of microseconds.

Returns

An object that represents value.

Exceptions

value is less than MinValue or greater than MaxValue.

-or-

value is PositiveInfinity

-or-

value is NegativeInfinity

value is equal to NaN.

Applies to

FromMicroseconds(Int64)

public:
 static TimeSpan FromMicroseconds(long microseconds);
public static TimeSpan FromMicroseconds (long microseconds);
static member FromMicroseconds : int64 -> TimeSpan
Public Shared Function FromMicroseconds (microseconds As Long) As TimeSpan

Parameters

microseconds
Int64

Returns

Applies to