TimeStandardConverterTryConvert Method |
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 bool TryConvert(
JulianDate value,
TimeStandard to,
out JulianDate result
)
Public Shared Function TryConvert (
value As JulianDate,
to As TimeStandard,
<OutAttribute> ByRef result As JulianDate
) As Boolean
public:
static bool TryConvert(
JulianDate value,
TimeStandard^ to,
[OutAttribute] JulianDate% result
)
static member TryConvert :
value : JulianDate *
to : TimeStandard *
result : JulianDate byref -> bool
Parameters
- value
- Type: AGI.Foundation.TimeJulianDate
The JulianDate to convert. - to
- Type: AGI.Foundation.TimeTimeStandard
The TimeStandard to convert value to.
- result
- Type: AGI.Foundation.TimeJulianDate
On return,
the resulting JulianDate equivalent to
value in the new TimeStandard.
Return Value
Type:
Boolean if
value could be converted to the
requested
TimeStandardto; otherwise
.
See Also