dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleTimeStamp Structure / TryParse Method / TryParse(String,OracleTimeStamp) Method
A string, containing a date to convert.
If the conversion was successful, this parameter contains the result OracleDate value; otherwise it contains MinValue.

In This Topic
    TryParse(String,OracleTimeStamp) Method
    In This Topic
    Converts the string representation of a date to OracleDate.
    Syntax
    'Declaration
     
    Public Overloads Shared Function TryParse( _
       ByVal value As String, _
       ByRef result As OracleTimeStamp _
    ) As Boolean
    public static bool TryParse( 
       string value,
       out OracleTimeStamp result
    )

    Parameters

    value
    A string, containing a date to convert.
    result
    If the conversion was successful, this parameter contains the result OracleDate value; otherwise it contains MinValue.

    Return Value

    true if the string was converted successfully; otherwise, false.
    See Also