'Declaration Public Shared Function TryParse( _ ByVal value As String, _ ByRef result As TdPeriodDate _ ) As Boolean
'Usage Dim value As String Dim result As TdPeriodDate Dim value As Boolean value = TdPeriodDate.TryParse(value, result)
public static bool TryParse( string value, out TdPeriodDate result )
public: static bool TryParse( String^ value, [Out] TdPeriodDate result )
Parameters
- value
- The string that contains the TdPeriodDate representation.
- result
- The TdPeriodDate representation of the period contained in the specified string.
Return Value
A Boolean is returned that indicates whether the conversion succeeded.
true
indicates that the conversion was successful and that the conversion is returned through the result parameter. false
indicates that the conversion failed.