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