DateTimeExtensionsToDateTime Method

Converts Timestamp to DateTime while preserving the milliseconds of the nanosecond fraction. The method generates a dateTime object of as specified by the outputFormat param.

Definition

Namespace: MFiles.VAF.Configuration
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public static DateTime ToDateTime(
	this Timestamp timestamp,
	DateTimeKind outputFormat = DateTimeKind.Local
)

Parameters

timestamp  Timestamp
The timestamp object to convert.
outputFormat  DateTimeKind  (Optional)
Specifies what the timestamp locality is, local or utc.

Return Value

DateTime
Converted date time in the specified output format locality.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Timestamp. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also