CLong.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Equals(Object) |
Returns a value indicating whether this instance is equal to a specified object. |
Equals(CLong) |
Returns a value indicating whether this instance is equal to a specified CLong value. |
Equals(Object)
- Source:
- CLong.cs
- Source:
- CLong.cs
- Source:
- CLong.cs
Returns a value indicating whether this instance is equal to a specified object.
public:
override bool Equals(System::Object ^ o);
public override bool Equals (object? o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean
Parameters
- o
- Object
An object to compare with this instance.
Returns
true
if o
is an instance of CLong and equals the value of this instance; otherwise, false
.
Applies to
Equals(CLong)
- Source:
- CLong.cs
- Source:
- CLong.cs
- Source:
- CLong.cs
Returns a value indicating whether this instance is equal to a specified CLong value.
public:
virtual bool Equals(System::Runtime::InteropServices::CLong other);
public bool Equals (System.Runtime.InteropServices.CLong other);
override this.Equals : System.Runtime.InteropServices.CLong -> bool
Public Function Equals (other As CLong) As Boolean
Parameters
Returns
true
if other
has the same value as this instance; otherwise, false
.