|
TimeToString(Int32, String, Double) Method
|
Converts the
Time value into a textual representation of years, days, hours,
minutes and seconds with the specified number of fractional digits given string array of
time names.
Namespace: GSF.UnitsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
Syntaxpublic string ToString(
int secondPrecision,
string[] timeNames,
double minimumSubSecondResolution = 0.001
)
Public Function ToString (
secondPrecision As Integer,
timeNames As String(),
Optional minimumSubSecondResolution As Double = 0.001
) As String
public:
String^ ToString(
int secondPrecision,
array<String^>^ timeNames,
double minimumSubSecondResolution = 0.001
)
member ToString :
secondPrecision : int *
timeNames : string[] *
?minimumSubSecondResolution : float
(* Defaults:
let _minimumSubSecondResolution = defaultArg minimumSubSecondResolution 0.001
*)
-> string
function ToString(secondPrecision, timeNames, minimumSubSecondResolution);
View SourceParameters
- secondPrecision Int32
- Number of fractional digits to display for seconds.
- timeNames String
- Time names array to use during textual conversion.
- minimumSubSecondResolution Double (Optional)
-
Minimum sub-second resolution to display. Defaults to Milli.
Return Value
String
The string representation of the value of this instance, consisting of the number of
years, days, hours, minutes and seconds represented by this value.
Exceptions
RemarksSet second precision to -1 to suppress seconds display.
timeNames array needs one string entry for each of the following names:
" year", " years", " day", " days", " hour", " hours", " minute", " minutes", " second", " seconds", "less than ".
See Also