CType Function (Visual Basic)

Returns the result of explicitly converting an expression to a specified data type, object, structure, class, or interface.

CType(expression, typename)

Parts

  • expression
    Any valid expression. If the value of expression is outside the range allowed by typename, Visual Basic throws an exception.

  • typename
    Any expression that is legal within an As clause in a Dim statement, that is, the name of any data type, object, structure, class, or interface.

Remarks

CType is compiled inline, which means that the conversion code is part of the code that evaluates the expression. In some cases there is no call to a procedure to accomplish the conversion, which makes execution faster.

If no conversion is defined from expression to typename, for example from Integer to Date, Visual Basic displays a compile-time error message.

If a conversion fails at run time, the appropriate exception occurs. If a narrowing conversion fails, an OverflowException is the most common result. If the conversion is undefined, an InvalidCastException occurs. This can happen, for example, if expression is of type Object and its run-time type has no conversion to typename.

If the data type of expression or typename is a class or structure you have defined, you can define CType on that class or structure as a conversion operator. This makes CType act as an overloaded operator. If you do this, you can control the behavior of conversions to and from your class or structure, including what exceptions can be thrown.

Overloading

The CType operator can also be overloaded on a class or structure defined outside your code. If your code converts to or from such a class or structure, be sure you understand the behavior of its CType operator. For more information, see Operator Procedures (Visual Basic).

Converting Dynamic Objects

If you are working with dynamic objects, where type conversions are performed by user-defined dynamic conversions that use the TryConvert or BindConvert methods, Use the CTypeDynamic method to convert the dynamic object.

Example

The following example uses the CType function to convert an expression to the specified data type.

Dim testNumber As Long = 1000
' The following line of code sets testNewType to 1000.0.
Dim testNewType As Single = CType(testNumber, Single)

See Also

Tasks

How to: Define a Conversion Operator (Visual Basic)

Reference

Type Conversion Functions (Visual Basic)

Conversion Functions (Visual Basic)

OverflowException

InvalidCastException

Operator Statement