Range.Equals Method (System) (original) (raw)

Definition

Namespace:

System

Assemblies:

netstandard.dll, System.Runtime.dll

Assembly:

System.Runtime.dll

Assembly:

Microsoft.Bcl.Memory.dll

Assembly:

netstandard.dll

Package:

Microsoft.Bcl.Memory v10.0.0-preview.4.25258.110

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 that indicates whether the current instance is equal to a specified object.
Equals(Range) Returns a value that indicates whether the current instance is equal to another Range object.

Equals(Object)

Source:

Range.cs

Source:

Range.cs

Source:

Range.cs

Source:

Range.cs

Returns a value that indicates whether the current instance is equal to a specified object.

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

Parameters

value

Object

An object to compare with this Range object.

Returns

true if value is of type Range and is equal to the current instance; otherwise, false.

Applies to

Equals(Range)

Source:

Range.cs

Source:

Range.cs

Source:

Range.cs

Source:

Range.cs

Returns a value that indicates whether the current instance is equal to another Range object.

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

Parameters

other

Range

A Range object to compare with this Range object.

Returns

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

Implements

Applies to