IsNothing Function

Returns a Boolean value indicating whether an expression has no object assigned to it.

Public Function IsNothing(ByVal Expression As Object) As Boolean

Parameters

  • Expression
    Required. Object expression.

Remarks

IsNothing returns True if the expression represents an object variable that currently has no object assigned to it; otherwise, it returns False.

IsNothing is intended to work on reference types. A value type cannot hold a value of Nothing and reverts to its default value if you assign Nothing to it. If you supply a value type in Expression, IsNothing always returns False.

Example

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)

Requirements

Namespace: Microsoft.VisualBasic

Module: Information

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

See Also

Concepts

Value Types and Reference Types

Reference

IsArray Function (Visual Basic)

IsDate Function (Visual Basic)

IsDBNull Function

IsError Function

IsNumeric Function (Visual Basic)

IsReference Function

Object Data Type

TypeName Function (Visual Basic)