System::Decimal::TryParse method
Contents
[
Hide
]Decimal::TryParse(const String&, Decimal&) method
Converts the specified string containing the string representation of a number to the equivalent Decimal value.
static bool System::Decimal::TryParse(const String &value, Decimal &result)
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
result | Decimal& | The reference to a Decimal variable where the result of the conversion is put |
ReturnValue
True if the conversion succeeded, otherwise - false
See Also
- Class String
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Font for C++
Decimal::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&, Decimal&) method
Converts the specified string containing the string representation of a number to the equivalent Decimal value using the provided formatting information and number style.
static bool System::Decimal::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider, Decimal &result)
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert |
styles | Globalization::NumberStyles | A bitwise combination of values of NumberStyles enum that specifies the permitted style of the string representation of a number |
provider | const SharedPtr<IFormatProvider>& | A pointer to an object that contains the string format information |
result | Decimal& | An output argument; contains the result of conversion |
ReturnValue
True if the conversion succeeded, otherwise - false
See Also
- Class String
- Enum NumberStyles
- Typedef SharedPtr
- Class IFormatProvider
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Font for C++