CULong.Equals Method

Definition

Overloads

Equals(Object)

Returns a value indicating whether this instance is equal to a specified object.

Equals(CULong)

Returns a value indicating whether this instance is equal to a specified CLong value.

Equals(Object)

Source:
CULong.cs
Source:
CULong.cs
Source:
CULong.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 CULong and equals the value of this instance; otherwise, false.

Applies to

Equals(CULong)

Source:
CULong.cs
Source:
CULong.cs
Source:
CULong.cs

Returns a value indicating whether this instance is equal to a specified CLong value.

public:
 virtual bool Equals(System::Runtime::InteropServices::CULong other);
public bool Equals (System.Runtime.InteropServices.CULong other);
override this.Equals : System.Runtime.InteropServices.CULong -> bool
Public Function Equals (other As CULong) As Boolean

Parameters

other
CULong

A CULong value to compare to this instance.

Returns

true if other has the same value as this instance; otherwise, false.

Implements

Applies to