User`s guide

Using .NET with VEE 7
VEE User’s Guide 299
Table 3 4 Converting VEE array data types to .NET data types in VEE 7.0
Convert From VEE Data
Ty pe
Convert To .NET Data Type * Notes
Int16 Array System.Int16 Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
Int32 Array System.Int32 Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
Real32 Array System.Single Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
Real64 Array System.Double Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
Text Array System.String Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
UInt8 Array System.Byte Array Use asClrType() to convert to other
.NET/CLR types. See asClrType()
documentation.
< type *> Array System.Boolean Array Use asVariantBool() on any VEE data type
that can be cast to an Int16, (UInt8, Int16,
Int32, Real32, Real64, Text). You may also
use the more generic asClrType(), e.g.,
asClrType(veeArray,
System.Boolean).
Date/Time Array System.DateTime Array VEE’s Date/Time is really of type Real64.
Use asClrType(veeDateTimeArray,
System.DateTime). See
examples\
dotnet\DateTime.vee
.