DurationHoursMinutesSecondsToSeconds Method |
Converts the specified number of hours, minutes, and seconds to total duration in seconds.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double HoursMinutesSecondsToSeconds(
int hours,
int minutes,
double seconds
)
Public Shared Function HoursMinutesSecondsToSeconds (
hours As Integer,
minutes As Integer,
seconds As Double
) As Double
public:
static double HoursMinutesSecondsToSeconds(
int hours,
int minutes,
double seconds
)
static member HoursMinutesSecondsToSeconds :
hours : int *
minutes : int *
seconds : float -> float
Parameters
- hours
- Type: SystemInt32
The number of hours. - minutes
- Type: SystemInt32
The number of minutes. - seconds
- Type: SystemDouble
The number of seconds.
Return Value
Type:
DoubleThe corresponding duration in seconds.
See Also