Share via


GetType Operator 

Returns a Type object for the specified type. The Type object provides information about the type such as its properties, methods, and events.

GetType(typename)

Parameters

  • typename
    The name of the type for which you desire information.

Remarks

The GetType operator returns the Type object for the specified typename. You can pass the name of any defined type in typename. This includes the following:

  • Any Visual Basic data type, such as Boolean or Date.

  • Any .NET Framework class, structure, module, or interface, such as System.ArgumentException or System.Double.

  • Any class, structure, module, or interface defined by your application.

  • Any array defined by your application.

  • Any delegate defined by your application.

  • Any enumeration defined by Visual Basic, the .NET Framework, or your application.

If you want to get the type object of an object variable, use the System.Type.GetType method.

The GetType operator can be useful in the following circumstances:

  • You need to access the metadata for a type at run time. The Type object supplies metadata such as type members and deployment information. You need this, for example, to reflect over an assembly. For more information, see System.Reflection.

  • You want to compare two object references to see if they refer to instances of the same type. If they do, GetType returns references to the same Type object.

Example

The following examples show the GetType operator in use.

' The following statement returns the Type object for Integer.
MsgBox(GetType(Integer).ToString())
' The following statement returns the Type object for one-dimensional string arrays.
MsgBox(GetType(String()).ToString())

See Also

Reference

Operator Precedence in Visual Basic
Operators Listed by Functionality

Concepts

Operators and Expressions in Visual Basic