Time Constructor A Sandcastle Documented Class Library
Creates a time with the specified hour, minute and second. Minute and second may be omitted for less precision. The offset specified the number of difference from UTC in number of minutes. The offset may be positive, negative or 0. If the offset is null, then according to ISO 8601 should use local time.

Namespace:  Apptus.ESales.Connector.Time
Assembly:  Apptus.Esales.ConnectorApi (in Apptus.Esales.ConnectorApi.dll) Version: 4.0.0
Syntax

C#
public Time(
	int hour,
	Nullable<int> minute,
	Nullable<int> second,
	Nullable<int> offset
)

Parameters

hour
Type: System.Int32
The hour. May not be null.
minute
Type: System.Nullable<Int32>
The minute. May be null.
second
Type: System.Nullable<Int32>
The second. May be null.
offset
Type: System.Nullable<Int32>
The offset from UTC in minutes. May be null.
See Also

Reference