what is CType???

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

ASP.NET 2.0

Can someone send me a link to the description of CType?

I've been googling and don't get any usefull info...

Jeff
 
Ctype() = class type (or type of object)

It is used in VB to cast an object to another type. For example, you have a
mammal object that should be a dog (subclass).

Dim d as Dog = Ctype(mammal, Dog)

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

********************************************
Think outside the box!
********************************************
 
Back
Top