Implicit and Explicit Conversions (Visual Basic)

An implicit conversion does not require any special syntax in the source code. In the following example, Visual Basic implicitly converts the value of k to a single-precision floating-point value before assigning it to q.

Dim k As Integer
Dim q As Double
' Integer widens to Double, so you can do this with Option Strict On.
k = 432
q = k

An explicit conversion uses a type conversion keyword. Visual Basic provides several such keywords, which coerce an expression in parentheses to the desired data type. These keywords act like functions, but the compiler generates the code inline, so execution is slightly faster than with a function call.

In the following extension of the preceding example, the CInt keyword converts the value of q back to an integer before assigning it to k.

' q had been assigned the value 432 from k.
q = Math.Sqrt(q)
k = CInt(q)
' k now has the value 21 (rounded square root of 432).

Conversion Keywords

The following table shows the available conversion keywords.

Type conversion keyword

Converts an expression to data type

Allowable data types of expression to be converted

CBool

Boolean Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), String, Object

CByte

Byte Data Type (Visual Basic)

Any numeric type (including SByte and enumerated types), Boolean, String, Object

CChar

Char Data Type (Visual Basic)

String, Object

CDate

Date Data Type (Visual Basic)

String, Object

CDbl

Double Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CDec

Decimal Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CInt

Integer Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CLng

Long Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CObj

Object Data Type

Any type

CSByte

SByte Data Type (Visual Basic)

Any numeric type (including Byte and enumerated types), Boolean, String, Object

CShort

Short Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CSng

Single Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CStr

String Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, Char, Char array, Date, Object

CType

Type specified following the comma (,)

When converting to an elementary data type (including an array of an elementary type), the same types as allowed for the corresponding conversion keyword

When converting to a composite data type, the interfaces it implements and the classes from which it inherits

When converting to a class or structure on which you have overloaded CType, that class or structure

CUInt

UInteger Data Type

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CULng

ULong Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

CUShort

UShort Data Type (Visual Basic)

Any numeric type (including Byte, SByte, and enumerated types), Boolean, String, Object

The CType Function

The CType Function (Visual Basic) operates on two arguments. The first is the expression to be converted, and the second is the destination data type or object class. Note that the first argument must be an expression, not a type.

CType is an inline function, meaning the compiled code makes the conversion, often without generating a function call. This improves performance.

For a comparison of CType with the other type conversion keywords, see DirectCast Operator (Visual Basic) and TryCast Operator (Visual Basic).

Elementary Types

The following example demonstrates the use of CType.

k = CType(q, Integer)
' The following statement coerces w to the specific object class Label.
f = CType(w, Label)

Composite Types

You can use CType to convert values to composite data types as well as to elementary types. You can also use it to coerce an object class to the type of one of its interfaces, as in the following example.

' Assume class cZone implements interface iZone.
Dim h As Object
' The first argument to CType must be an expression, not a type.
Dim cZ As cZone
' The following statement coerces a cZone object to its interface iZone.
h = CType(cZ, iZone)

Array Types

CType can also convert array data types, as in the following example.

Dim v() As classV
Dim obArray() As Object
' Assume some object array has been assigned to obArray.
' Check for run-time type compatibility.
If TypeOf obArray Is classV()
    ' obArray can be converted to classV.
    v = CType(obArray, classV())
End If

For more information and an example, see Array Conversions (Visual Basic).

Types Defining CType

You can define CType on a class or structure you have defined. This allows you to convert values to and from the type of your class or structure. For more information and an example, see How to: Define a Conversion Operator (Visual Basic).

Note

Values used with a conversion keyword must be valid for the destination data type, or an error occurs. For example, if you attempt to convert a Long to an Integer, the value of the Long must be within the valid range for the Integer data type.

Warning

Specifying CType to convert from one class type to another fails at run time if the source type does not derive from the destination type. Such a failure throws an InvalidCastException exception.

However, if one of the types is a structure or class you have defined, and if you have defined CType on that structure or class, a conversion can succeed if it satisfies the requirements of your CType. See How to: Define a Conversion Operator (Visual Basic).

Performing an explicit conversion is also known as casting an expression to a given data type or object class.

See Also

Tasks

How to: Convert an Object to Another Type in Visual Basic

Troubleshooting Data Types (Visual Basic)

Reference

Data Type Summary (Visual Basic)

Type Conversion Functions (Visual Basic)

Concepts

Conversions Between Strings and Other Types (Visual Basic)

Other Resources

Type Conversions in Visual Basic

Structures (Visual Basic)