Information.IsNothing(Object) Método
Definición
Devuelve un valor de tipo Boolean que indica si una expresión no tiene ningún objeto asignado.Returns a Boolean value indicating whether an expression has no object assigned to it.
public:
static bool IsNothing(System::Object ^ Expression);
public static bool IsNothing (object? Expression);
public static bool IsNothing (object Expression);
static member IsNothing : obj -> bool
Public Function IsNothing (Expression As Object) As Boolean
Parámetros
- Expression
- Object
Obligatorio.Required. Expresión Object.Object expression.
Devoluciones
Devuelve un valor de tipo Boolean que indica si una expresión no tiene ningún objeto asignado.Returns a Boolean value indicating whether an expression has no object assigned to it.
Ejemplos
En el ejemplo siguiente se usa la IsNothing función para determinar si una variable de objeto está asociada a una instancia de objeto.The following example uses the IsNothing function to determine if an object variable is associated with any object instance.
Dim testVar As Object
' No instance has been assigned to variable testVar yet.
Dim testCheck As Boolean
' The following call returns True.
testCheck = IsNothing(testVar)
' Assign a string instance to variable testVar.
testVar = "ABCDEF"
' The following call returns False.
testCheck = IsNothing(testVar)
' Disassociate variable testVar from any instance.
testVar = Nothing
' The following call returns True.
testCheck = IsNothing(testVar)
Comentarios
IsNothing Devuelve True si la expresión representa una variable de objeto que actualmente no tiene ningún objeto asignado; de lo contrario, devuelve False .IsNothing returns True if the expression represents an object variable that currently has no object assigned to it; otherwise, it returns False.
IsNothing está pensado para trabajar con tipos de referencia.IsNothing is intended to work on reference types. Un tipo de valor no puede contener un valor de Nothing y revierte a su valor predeterminado si se le asigna Nothing .A value type cannot hold a value of Nothing and reverts to its default value if you assign Nothing to it. Si proporciona un tipo de valor en Expression , IsNothing siempre devuelve False .If you supply a value type in Expression, IsNothing always returns False.