Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TimeSpan.FromMicroseconds Method

Definition

Namespace:
System
Assemblies:
netstandard.dll, System.Runtime.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
FromMicroseconds(Double)

Returns a TimeSpan that represents a specified number of microseconds.

FromMicroseconds(Int64)

Initializes a new instance of the TimeSpan structure to a specified number of microseconds.

FromMicroseconds(Double)

Source:
TimeSpan.cs
Source:
TimeSpan.cs
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)

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

Initializes a new instance of the TimeSpan structure to a specified number of microseconds.

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

Number of microseconds.

Returns

Returns a TimeSpan that represents a specified number of microseconds.

Exceptions

The parameters specify a TimeSpan value less than MinValue or greater than MaxValue

Applies to


Feedback

Was this page helpful?