Information.IsArray(Object) Método

Definición

Devuelve un valor de tipo Boolean que indica si una variable apunta a una matriz.Returns a Boolean value indicating whether a variable points to an array.

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

Parámetros

VarName
Object

Obligatorio.Required. Variable de Object.Object variable.

Devoluciones

Boolean

Devuelve un valor de tipo Boolean que indica si una variable apunta a una matriz.Returns a Boolean value indicating whether a variable points to an array.

Ejemplos

En este ejemplo se usa la IsArray función para comprobar si varias variables hacen referencia a una matriz.This example uses the IsArray function to check if several variables refer to an array.

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.

Comentarios

IsArray Devuelve True si la variable apunta a una matriz; en caso contrario, devuelve False .IsArray returns True if the variable points to an array; otherwise, it returns False. IsArray es especialmente útil con los objetos que pueden contener matrices.IsArray is especially useful with objects that might contain arrays.

Se aplica a

Consulte también