IntPtr.Equals Method

Definition

Overloads

Equals(IntPtr)

Indicates whether the current object is equal to another object of the same type.

Equals(Object)

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

Equals(IntPtr)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

Indicates whether the current object is equal to another object of the same type.

public:
 virtual bool Equals(IntPtr other);
public bool Equals (IntPtr other);
override this.Equals : nativeint -> bool
Public Function Equals (other As IntPtr) As Boolean

Parameters

other
IntPtr

nativeint

An object to compare with this object.

Returns

true if the current object is equal to other; otherwise, false.

Implements

Applies to

Equals(Object)

Source:
IntPtr.cs
Source:
IntPtr.cs
Source:
IntPtr.cs

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

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
public override bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean

Parameters

obj
Object

An object to compare with this instance or null.

Returns

true if obj is an instance of IntPtr and equals the value of this instance; otherwise, false.

Applies to