'Declaration Public Shared Function TryParse( _ ByVal value As String, _ ByRef result As TdPeriodTimestamp _ ) As Boolean
'Usage Dim value As String Dim result As TdPeriodTimestamp Dim value As Boolean value = TdPeriodTimestamp.TryParse(value, result)
public static bool TryParse( string value, out TdPeriodTimestamp result )
public: static bool TryParse( String^ value, [Out] TdPeriodTimestamp result )
Parameters
- value
- The string that contains the TdPeriodTimestamp representation.
- result
- The TdPeriodTimestamp 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.