nedcomp hosting homepage

Producten en Diensten
Dedicated servers
Datacenter informatie
Partners, resellers
Helpdesk informatie
Technische docs, tools
Support homepage
ASP componenten
Praktische ASP, ASP.NET
Visual route server
Whois (domein gegevens)
Software documentatie
Whitepapers
Zoeken
Nedcomp / algemeen

Zoeken
 

Copyright © Nedcomp Hosting
Telefoon nr :   +31 184 670111
Fax nummer :   +31 184 631384
E-mailadres :   info@nedcomp.nl
 

Visual Basic Language Reference  

GetType Operator

Returns a Type object for the specified type. The Type object can be used to retrieve information about the type such as its properties, methods, and events.

GetType(typename)

Parameters

typename
The name of the type for which information is desired.

Remarks

The GetType operator returns the type object for the specified typename. If you want to get the type object of an object variable, use Type.GetType Method.

Example

The following examples show the GetType operator in use.

GetType(Integer)   ' Returns the integer Type object.
GetType(String())   ' Returns the Type object for 1D string arrays.

See Also

Operator Precedence in Visual Basic | Operators Listed by Functionality