Converting Data Types
Operators and procedures that convert between different types.
Generic conversions
Generic conversions
Operators to convert between arbitrary types.
Conversions to integral typesOperators to convert to integral types.
Conversions to floating-point typesOperators to convert to floating-point types.
Conversions to/from string typesOperators to convert top an from string types.
Conversion to boolean typesOperators to convert to boolean types.
Generic conversions Conversions to integral types CByte and CUByte Converts numeric expressions to 8-bit values. CShort and CUShortConverts numeric expressions to 16-bit values. CLng and CULngConverts numeric expressions to 32-bit values. CInt and CUIntConverts numeric expressions to 32-bit or 64-bit values. CLngInt and CULngIntConverts numeric expressions to 64-bit values. CSignConverts a numeric expression to a signed-type value. CUnsgConverts a numeric expression to an unsigned-type value. | Conversions to floating-point types Conversions to/from string types Str and WStr Conversion to boolean typesConverts numeric expressions or booleans to their string representation. ValConverts a numeric string expression to a floating-point value. ValInt and ValUIntConverts numeric string expressions to integer values. ValLng and ValULngConverts numeric string expressions to long values. |