Range.Equals Método
Definição
Sobrecargas
| Equals(Object) |
Retorna um valor que indica se a instância atual é igual a um objeto especificado.Returns a value that indicates whether the current instance is equal to a specified object. |
| Equals(Range) |
Retorna um valor que indica se a instância atual é igual a outro objeto Range.Returns a value that indicates whether the current instance is equal to another Range object. |
Equals(Object)
Retorna um valor que indica se a instância atual é igual a um objeto especificado.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
Parâmetros
- value
- Object
Um objeto a ser comparado com esse objeto Range.An object to compare with this Range object.
Retornos
true se value for do tipo Range e igual à instância atual; caso contrário, false.true if value is of type Range and is equal to the current instance; otherwise, false.
Aplica-se a
Equals(Range)
public:
virtual bool Equals(Range other);
public bool Equals (Range other);
override this.Equals : Range -> bool
Public Function Equals (other As Range) As Boolean
Parâmetros
- other
- Range
Um objeto Range a ser comparado com este objeto Range.A Range object to compare with this Range object.
Retornos
true se a instância atual for igual a other; caso contrário, false.true if the current instance is equal to other; otherwise, false.