NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UInt64.Equals

Compares the current instance with a specified Object. The UInt64 type is not CLS compliant. The CLS-compliant alternative is Int64.

[C#]
public override bool Equals(
   object obj
);
[C++]
public: override bool Equals(
   Object* obj
);
[JScript]
public override function Equals(
   obj : Object
) : Boolean;

[Visual Basic] The UInt64 type cannot be used in Visual Basic.

Parameters [C#, C++, JScript]

obj
The object that compares with the current instance.

Return Value [C#, C++, JScript]

true if the object is a UInt64 with the same value as the current instance; otherwise, false.

Remarks [C#, C++, JScript]

The Equals method compares this instance with a specified object and returns a Boolean determination of their relationship.

This method overrides Equals.

See Also

UInt64 Structure | UInt64 Members | System Namespace | Object | Boolean