Days Function | |
Convert a specified number of seconds to days.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION Days(
nSeconds AS REAL8
) AS LONG
public static int Days(
double nSeconds
)
Request Example
View SourceParameters
- nSeconds
- Type: Double
The number of seconds to convert to days.
Return Value
Type:
Long
The number of days to the nearest day.
Remarks
Days() converts a given number of seconds to the whole number of days.
The remainder under 24 hours can be obtained by the TString() function (see example below).
Examples
This example uses Days() and TString() to show that 300,000 is equal to 3 days, 11 hours, and 20 minutes:
1? Days(300000)
2? TString(300000)
See Also