Parse()

Single::Parse(const String&) method

Converts the specified string containing the string representation of a number to the equivalent single-precision floating-point value.

static float System::Single::Parse(const String &value)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.

Return Value

The single-precision floating-point value equal to the number represented by the specified string.

Single::Parse(const String&, const SharedPtr<IFormatProvider>&) method

Converts the specified string containing the string representation of a number to the equivalent single-precision floating-point value using the provided formatting information.

static float System::Single::Parse(const String &value, const SharedPtr<IFormatProvider> &provider)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.
providerconst SharedPtr<IFormatProvider>&A pointer to an object that contains the string format information.

Return Value

The single-precision floating-point value equal to the number represented by the specified string.

Single::Parse(const String&, const SharedPtr<Globalization::CultureInfo>&) method

static float System::Single::Parse(const String &value, const SharedPtr<Globalization::CultureInfo> &culture)

Single::Parse(const String&, const SharedPtr<Globalization::NumberFormatInfo>&) method

static float System::Single::Parse(const String &value, const SharedPtr<Globalization::NumberFormatInfo> &nfi)

Single::Parse(const String&, std::nullptr_t) method

static float System::Single::Parse(const String &value, std::nullptr_t)

Single::Parse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&) method

Converts the specified string containing the string representation of a number to the equivalent single-precision floating-point value using the provided formatting information and number style.

static float System::Single::Parse(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider)

Arguments

ParameterTypeDescription
valueconst String&The string to convert.
stylesGlobalization::NumberStylesA bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number.
providerconst SharedPtr<IFormatProvider>&A pointer to an object that contains the string format information.

Return Value

The single-precision floating-point value equal to the number represented by the specified string.

Single::Parse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&) method

static float System::Single::Parse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::CultureInfo> &culture)

Single::Parse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&) method

static float System::Single::Parse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::NumberFormatInfo> &nfi)

Single::Parse(const String&, Globalization::NumberStyles, std::nullptr_t) method

static float System::Single::Parse(const String &value, Globalization::NumberStyles styles, std::nullptr_t=nullptr)

See Also