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