Information.IsReference Method
Assembly: Microsoft.VisualBasic (in microsoft.visualbasic.dll)
For more detailed information, see the Visual Basic topic IsReference Function.
IsReference returns True if Expression represents a reference type, such as a class instance, a String type, or an array of any type; otherwise, it returns False.
A reference type contains a pointer to data stored elsewhere in memory. A value type contains its own data.
This example uses the IsReference function to check if several variables refer to reference types.
Dim testArray(3) As Boolean Dim testString As String = "Test string" Dim testObject As Object = New Object() Dim testNumber As Integer = 12 testArray(0) = IsReference(testArray) testArray(1) = IsReference(testString) testArray(2) = IsReference(testObject) testArray(3) = IsReference(testNumber)
In the preceding example, the first three calls to IsReference return True. The last call returns False, because Integer is a value type, not a reference type.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
Information ClassInformation Members
Microsoft.VisualBasic Namespace
Other Resources
IsReference FunctionIsArray Function (Visual Basic)
IsDate Function (Visual Basic)
IsDBNull Function
IsError Function
IsNothing Function
IsNumeric Function (Visual Basic)
Value Types and Reference Types
Object Data Type
TypeName Function (Visual Basic)