ToUInt64()

Convert::ToUInt64(bool) method

Converts the specified boolean value to an equivalent 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(bool value)

Convert::ToUInt64(uint8_t) method

Converts the specified 8-bit unsigned integer to an equivalent 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(uint8_t value)

Convert::ToUInt64(int8_t) method

Converts the specified 8-bit signed integer to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(int8_t value)

Convert::ToUInt64(uint16_t) method

Converts the specified 16-bit unsigned integer to an equivalent 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(uint16_t value)

Convert::ToUInt64(int16_t) method

Converts the specified 16-bit signed integer to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(int16_t value)

Convert::ToUInt64(uint32_t) method

Converts the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(uint32_t value)

Convert::ToUInt64(int32_t) method

Converts the specified 32-bit signed integer to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(int32_t value)

Convert::ToUInt64(uint64_t) method

Returns the specified 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(uint64_t value)

Convert::ToUInt64(int64_t) method

Converts the specified 64-bit signed integer to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(int64_t value)

Convert::ToUInt64(float) method

Converts the specified float number to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(float value)

Convert::ToUInt64(double) method

Converts the specified double number to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(double value)

Convert::ToUInt64(const Decimal&) method

Converts the specified decimal number to an equivalent 64-bit unsigned integer.

static uint64_t System::Convert::ToUInt64(const Decimal &value)

Convert::ToUInt64(char_t) method

Converts the specified unicode character to an equivalent 64-bit unsigned integer.

static constexpr uint64_t System::Convert::ToUInt64(char_t value)

Convert::ToUInt64(DateTime) method

Conversion is not supported. Always throws InvalidCastException.

static uint64_t System::Convert::ToUInt64(DateTime value)

Convert::ToUInt64(std::nullptr_t) method

Converts the specified null-string to the equivalent unsigned 64-bit integer value.

static constexpr uint64_t System::Convert::ToUInt64(std::nullptr_t)

Return Value

Zero.

Convert::ToUInt64(const char_t *) method

Converts the specified c-string containing the string representation of a number to the equivalent unsigned 64-bit integer value.

static uint64_t System::Convert::ToUInt64(const char_t *value)

Arguments

ParameterTypeDescription
valueconst char_t *The c-string to convert

Return Value

The unsigned 64-bit integer value equal to the number represented by the specified c-string

Convert::ToUInt64(const String&) method

Converts the specified string containing the string representation of a number to the equivalent unsigned 64-bit integer value.

static uint64_t System::Convert::ToUInt64(const String &value)

Arguments

ParameterTypeDescription
valueconst String&The string to convert

Return Value

The unsigned 64-bit integer value equal to the number represented by the specified string

Convert::ToUInt64(const String&, int) method

Converts the specified string containing the string representation of a number in the specified base to the equivalent unsigned 64-bit integer value.

static uint64_t System::Convert::ToUInt64(const String &value, int from_base)

Arguments

ParameterTypeDescription
valueconst String&The string to convert
from_baseintThe base of the number represented by the string

Return Value

The unsigned 64-bit integer value equal to the number represented by the specified string

Convert::ToUInt64(const String&, const SharedPtr<IFormatProvider>&) method

Converts the specified string containing the string representation of a number to the equivalent unsigned 64-bit integer value using the provided formatting information.

static uint64_t System::Convert::ToUInt64(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 unsigned 64-bit integer value equal to the number represented by the specified string

Convert::ToUInt64(const String&, const SharedPtr<Globalization::CultureInfo>&) method

static uint64_t System::Convert::ToUInt64(const String &value, const SharedPtr<Globalization::CultureInfo> &culture)

Convert::ToUInt64(const String&, const SharedPtr<Globalization::NumberFormatInfo>&) method

static uint64_t System::Convert::ToUInt64(const String &value, const SharedPtr<Globalization::NumberFormatInfo> &nfi)

Convert::ToUInt64(const String&, std::nullptr_t) method

static uint64_t System::Convert::ToUInt64(const String &value, std::nullptr_t)

Convert::ToUInt64(const String&, Globalization::NumberStyles, const SharedPtr<IFormatProvider>&) method

Converts the specified string containing the string representation of a number to the equivalent unsigned 64-bit integer value using the provided formatting information and number style.

static uint64_t System::Convert::ToUInt64(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 unsigned 64-bit integer value equal to the number represented by the specified string

Convert::ToUInt64(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::CultureInfo>&) method

static uint64_t System::Convert::ToUInt64(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::CultureInfo> &culture)

Convert::ToUInt64(const String&, Globalization::NumberStyles, const SharedPtr<Globalization::NumberFormatInfo>&) method

static uint64_t System::Convert::ToUInt64(const String &value, Globalization::NumberStyles styles, const SharedPtr<Globalization::NumberFormatInfo> &nfi)

Convert::ToUInt64(const String&, Globalization::NumberStyles, std::nullptr_t) method

static uint64_t System::Convert::ToUInt64(const String &value, Globalization::NumberStyles styles, std::nullptr_t=nullptr)

Convert::ToUInt64(Enum) method

template<typename Enum,typename> static uint64_t System::Convert::ToUInt64(Enum value)

Convert::ToUInt64(const SharedPtr<Object>&, const SharedPtr<IFormatProvider>&) method

Converts the specified boxed value to equivalent unsigned 64-bit integer value.

static uint64_t System::Convert::ToUInt64(const SharedPtr<Object> &obj, const SharedPtr<IFormatProvider> &provider=nullptr)

Arguments

ParameterTypeDescription
objconst SharedPtr<Object>&The shared pointer to the object boxing the value to convert
providerconst SharedPtr<IFormatProvider>&The string format to be used if the type of the boxed value is String

Return Value

An unsigned 64-bit integer value equivalent to the specified boxed value

See Also