Information.IsArray(Object) Méthode

Définition

Retourne une valeur Boolean indiquant si une variable pointe vers un tableau.

public:
 static bool IsArray(System::Object ^ VarName);
public static bool IsArray (object? VarName);
public static bool IsArray (object VarName);
static member IsArray : obj -> bool
Public Function IsArray (VarName As Object) As Boolean

Paramètres

VarName
Object

Obligatoire. Variable Object.

Retours

Retourne une valeur Boolean indiquant si une variable pointe vers un tableau.

Exemples

Cet exemple utilise la IsArray fonction pour case activée si plusieurs variables font référence à un tableau.

Dim firstArray(4), secondArray(3) As Integer
Dim thisString As String = "Test"
Dim arrayCheck As Boolean
arrayCheck = IsArray(firstArray)
arrayCheck = IsArray(secondArray)
arrayCheck = IsArray(thisString)
' The first two calls to IsArray return True; the third returns False.

Remarques

IsArray retourne True si la variable pointe vers un tableau ; sinon, elle retourne False. IsArray est particulièrement utile avec les objets qui peuvent contenir des tableaux.

S’applique à

Voir aussi