Noda Time
FromHourMinuteSecondTick Method (hour, minute, second, tickWithinSecond)
NamespacesNodaTimeLocalTimeFromHourMinuteSecondTick(Int32, Int32, Int32, Int32)

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

Factory method for creating a local time from the hour of day, minute of hour, second of minute, and tick of second.
Declaration Syntax
C#Visual BasicVisual C++
public static LocalTime FromHourMinuteSecondTick(
	int hour,
	int minute,
	int second,
	int tickWithinSecond
)
Public Shared Function FromHourMinuteSecondTick ( _
	hour As Integer, _
	minute As Integer, _
	second As Integer, _
	tickWithinSecond As Integer _
) As LocalTime
public:
static LocalTime FromHourMinuteSecondTick(
	int hour, 
	int minute, 
	int second, 
	int tickWithinSecond
)
Parameters
hour (Int32)
The hour of day in the desired time, in the range [0, 23].
minute (Int32)
The minute of hour in the desired time, in the range [0, 59].
second (Int32)
The second of minute in the desired time, in the range [0, 59].
tickWithinSecond (Int32)
The tick within the second in the desired time, in the range [0, 9999999].
Return Value
The resulting time.
Remarks
This is not a constructor overload as it would have the same signature as the one taking millisecond of second.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe parameters do not form a valid time.

Assembly: NodaTime (Module: NodaTime.dll) Version: 1.2.0.0 (1.2.0)