RuntimeMethodHandle.Equals Method

Definition

Indicates whether one RuntimeMethodHandle is equal to another.

Overloads

Equals(Object)

Indicates whether this instance is equal to a specified object.

Equals(RuntimeMethodHandle)

Indicates whether this instance is equal to a specified RuntimeMethodHandle.

Equals(Object)

Source:
RuntimeHandles.cs
Source:
RuntimeHandles.cs
Source:
RuntimeHandles.cs

Indicates 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

A Object to compare to this instance.

Returns

true if obj is a RuntimeMethodHandle and equal to the value of this instance; otherwise, false.

See also

Applies to

Equals(RuntimeMethodHandle)

Source:
RuntimeHandles.cs
Source:
RuntimeHandles.cs
Source:
RuntimeHandles.cs

Indicates whether this instance is equal to a specified RuntimeMethodHandle.

public:
 bool Equals(RuntimeMethodHandle handle);
public:
 virtual bool Equals(RuntimeMethodHandle handle);
public bool Equals (RuntimeMethodHandle handle);
override this.Equals : RuntimeMethodHandle -> bool
Public Function Equals (handle As RuntimeMethodHandle) As Boolean

Parameters

handle
RuntimeMethodHandle

A RuntimeMethodHandle to compare to this instance.

Returns

true if handle is equal to the value of this instance; otherwise, false.

Implements

See also

Applies to