dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleNumberMappingCollection Class / TryParse(String,OracleNumberMappingCollection) Method
The string representation of OracleNumberMappingCollection to parse.
OracleNumberMappingCollection instance, corresponding to the string representation.

In This Topic
    TryParse(String,OracleNumberMappingCollection) Method
    In This Topic
    Parses a string representation of an OracleNumberMappingCollection and returns OracleNumberMappingCollection instance as an out parameter.
    Syntax
    'Declaration
     
    Public Shared Function TryParse( _
       ByVal value As String, _
       ByRef numberMappings As OracleNumberMappingCollection _
    ) As Boolean
    public static bool TryParse( 
       string value,
       out OracleNumberMappingCollection numberMappings
    )

    Parameters

    value
    The string representation of OracleNumberMappingCollection to parse.
    numberMappings
    OracleNumberMappingCollection instance, corresponding to the string representation.

    Return Value

    true if the string value is valid and is correctly parsed; otherwise, false.
    Remarks
    An example of an OracleNumberMappingCollection string representation: " ((Integer, 1, 5, System.Int16), (FLOAT,12,15,System.Decimal), (NUMBER,7,9,System.Single))"
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also