Share via


UInt64 Structure

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents a 64-bit unsigned integer.

This API is not CLS-compliant. The CLS-compliant alternative is Decimal.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
<SerializableAttribute> _
<CLSCompliantAttribute(False)> _
Public Structure UInt64
[SerializableAttribute]
[CLSCompliantAttribute(false)]
public struct UInt64
[SerializableAttribute]
[CLSCompliantAttribute(false)]
public value class UInt64
[<Sealed>]
[<SerializableAttribute>]
[<CLSCompliantAttribute(false)>]
type UInt64 =  struct end
JScript supports the use of structures, but not the declaration of new ones.

The UInt64 type exposes the following members.

Methods

  Name Description
Public method Equals Indicates whether this instance and a specified object are equal. (Inherited from ValueType.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public methodStatic member Parse Converts the string representation of a number to its 64-bit unsigned integer equivalent.
Public method ToString() () () () Converts the numeric value of this instance to its equivalent string representation. (Overrides Object. . :: . .ToString() () () ().)
Public method ToString(String) Converts the numeric value of this instance to its equivalent string representation using the specified format.

Top

Fields

  Name Description
Public fieldStatic member MaxValue Represents the largest possible value of UInt64. This field is constant.
Public fieldStatic member MinValue Represents the smallest possible value of UInt64. This field is constant.

Top

Remarks

The UInt64 value type represents unsigned integers with values ranging from 0 to 18,446,744,073,709,551,615.

UInt64 provides methods to compare instances of this type, convert the value of an instance to its string representation, and convert the string representation of a number to an instance of this type.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System Namespace