EntityHandle.Equals Method

Definition

Overloads

Equals(Object)

Returns a value that indicates whether the current instance and the specified object are equal.

Equals(EntityHandle)

Returns a value that indicates whether the current instance and the specified EntityHandle are equal.

Equals(Object)

Source:
EntityHandle.cs
Source:
EntityHandle.cs
Source:
EntityHandle.cs

Returns a value that indicates whether the current instance and the specified object are equal.

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

The object to compare with the current instance.

Returns

true if obj is an EntityHandle and is equal to the current instance; otherwise, false.

Applies to

Equals(EntityHandle)

Source:
EntityHandle.cs
Source:
EntityHandle.cs
Source:
EntityHandle.cs

Returns a value that indicates whether the current instance and the specified EntityHandle are equal.

public:
 virtual bool Equals(System::Reflection::Metadata::EntityHandle other);
public bool Equals (System.Reflection.Metadata.EntityHandle other);
override this.Equals : System.Reflection.Metadata.EntityHandle -> bool
Public Function Equals (other As EntityHandle) As Boolean

Parameters

other
EntityHandle

The value to compare with the current instance.

Returns

true if the current instance and other are equal; otherwise, false.

Implements

Applies to