dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlNumeric Structure / Parse Method / Parse(String,IFormatProvider) Method
String that represents a numerical value.
The provider to use for formatting the value, or a null reference to obtain numeric format information from the current locale settings of the operating system.

In This Topic
    Parse(String,IFormatProvider) Method
    In This Topic
    Parses the specified string value and returns a newPgSqlNumeric instance.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Parse( _
       ByVal value As String, _
       ByVal formatProvider As IFormatProvider _
    ) As PgSqlNumeric
    public static PgSqlNumeric Parse( 
       string value,
       IFormatProvider formatProvider
    )

    Parameters

    value
    String that represents a numerical value.
    formatProvider
    The provider to use for formatting the value, or a null reference to obtain numeric format information from the current locale settings of the operating system.

    Return Value

    A new PgSqlNumeric instance.
    See Also