Vector512<T>.Equals Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Equals(Object) |
Détermine si l'objet spécifié est identique à l'instance actuelle. |
Equals(Vector512<T>) |
Détermine si le Vector512<T> spécifié est égal à l'instance actuelle. |
Equals(Object)
- Source:
- Vector512_1.cs
- Source:
- Vector512_1.cs
Détermine si l'objet spécifié est identique à l'instance actuelle.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Paramètres
- obj
- Object
Objet à comparer à l’instance actuelle.
Retours
true
si obj
est un Vector512<T> et s’il est égal à l’instance actuelle ; sinon, false
.
S’applique à
Equals(Vector512<T>)
- Source:
- Vector512_1.cs
- Source:
- Vector512_1.cs
Détermine si le Vector512<T> spécifié est égal à l'instance actuelle.
public:
virtual bool Equals(System::Runtime::Intrinsics::Vector512<T> other);
public bool Equals (System.Runtime.Intrinsics.Vector512<T> other);
override this.Equals : System.Runtime.Intrinsics.Vector512<'T> -> bool
Public Function Equals (other As Vector512(Of T)) As Boolean
Paramètres
- other
- Vector512<T>
Vector512<T> à comparer à l'instance actuelle.
Retours
true
si l’objet other
est égal à l’instance actuelle ; sinon, false
.
Implémente
Exceptions
Le type du vecteur (T
) n’est pas pris en charge.