Helper.CompareArrays(Object[], Object[]) 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.
Compare deux tableaux
public:
static bool CompareArrays(cli::array <System::Object ^> ^ a, cli::array <System::Object ^> ^ b);
public static bool CompareArrays (object[] a, object[] b);
static member CompareArrays : obj[] * obj[] -> bool
Public Shared Function CompareArrays (a As Object(), b As Object()) As Boolean
Paramètres
- a
- Object[]
Premier tableau à prendre en compte dans la comparaison.
- b
- Object[]
Deuxième tableau à comparer au premier.
Retours
true si les deux tableaux sont null ; false est retourné si l’un des tableaux est null, que leurs longueurs sont différentes ou qu’un élément d’un tableau est différent que l’élément correspondant dans l’autre tableau.