[This is preliminary documentation and is subject to change.]

Returns a TimeSpanFormattable that represents a specified time, where the specification is in units of ticks.

Namespace: Tools
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public static TimeSpanFormattable FromTicks(
	long value
)
Visual Basic
Public Shared Function FromTicks ( _
	value As Long _
) As TimeSpanFormattable
Visual C++
public:
static TimeSpanFormattable FromTicks(
	long long value
)
F#
static member FromTicks : 
        value:int64 -> TimeSpanFormattable 
JScript
public static function FromTicks(
	value : long
) : TimeSpanFormattable

Parameters

value
Type: System..::..Int64
A number of ticks that represent a time.

Return Value

A TimeSpanFormattable with a value of value.

See Also