TryParse Method (PdfDateTime)
In This Topic
Tries to convert a string to System.DateTimeOffset. See PDF 1.7 specification chapter 3.8.3.
Syntax
'Declaration
Public Shared Function TryParse( _
ByVal As System.String, _
ByRef As System.DateTimeOffset _
) As System.Boolean
public static System.bool TryParse(
System.string ,
out System.DateTimeOffset
)
Parameters
- s
- The string in the format D:YYYYMMDDHHmmSSOHH'mm'.
- value
- OUT: The parsed System.DateTimeOffset value.
Return Value
True if conversion succeed, false otherwise.
See Also