TryParse()
Contents
[
Hide
]UInt64::TryParse(const String&, uint64_t&) method
Converts the specified string containing the string representation of a number to the equivalent 64-bit unsigned integer.
static bool System::UInt64::TryParse(const String &value, uint64_t &result)
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string to convert. |
result | uint64_t& | The reference to a 64-bit unsigned integer variable where the result of the conversion is put. |
Return Value
True if the conversion succeeded, otherwise - false.
UInt64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&, uint64_t&) method
Converts the specified string containing the string representation of a number to the equivalent 64-bit unsigned integer using the provided formatting information and number style.
static bool System::UInt64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<IFormatProvider> &provider, uint64_t &result)
Arguments
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 | uint64_t& | The reference to a 64-bit unsigned integer variable where the result of the conversion is put. |
Return Value
True if the conversion succeeded, otherwise - false.
UInt64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&, uint64_t&) method
static bool System::UInt64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::CultureInfo> &culture, uint64_t &result)
UInt64::TryParse(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&, uint64_t&) method
static bool System::UInt64::TryParse(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::NumberFormatInfo> &nfi, uint64_t &result)
UInt64::TryParse(const String&, Globalization::NumberStyles, std::nullptr_t, uint64_t&) method
static bool System::UInt64::TryParse(const String &value, Globalization::NumberStyles styles, std::nullptr_t, uint64_t &result)
See Also
- Enum NumberStyles
- Typedef SharedPtr
- Class String
- Class IFormatProvider
- Class CultureInfo
- Class NumberFormatInfo
- Struct UInt64
- Namespace System
- Library Aspose.Slides