User`s guide

Using .NET with VEE 7
VEE User’s Guide 297
System.Char Array Object The VEE object holds a pointer to a
System.Array .NET object.
You can use the formula
CreateInstance(“mscorlib”,”System.String”,
charArray).ToString(); to convert an array to a
.NET data type that VEE can convert
automatically.
System.DateTime Array Object The VEE object holds a pointer to a
System.Array .NET object.
System.Decimal Array Object The VEE object holds a pointer to a
System.Array .NET object.
You can use a System.Convert.To* method to
convert each array member to a .NET data
type that VEE can convert automatically, e.g.,
ToInt32().If the value does not fit in an Int32,
an error 751 occurs indicating a
System.OverflowException. The
System.Decimal structure itself also
provides a number of conversion methods.
Double Array Real64 Array
System.Enum Array Object The VEE object holds a pointer to a
System.Array .NET object.
System.Int16 Array Int16 Array
System.Int32 Array Int32 Array
System.Int64 Array Object The VEE object holds a pointer to a
System.Array .NET object.
You can use a System.Convert.To* method to
convert each array member to a .NET data
type that VEE can convert automatically, e.g.,
ToInt32(). If the value does not fit in an Int32,
an error 751 occurs indicating a
System.OverflowException.