VirtualArray.ToStringArray Method

Top 

Description

Returns a copy of the Array in the form of a StringArray. This is equivalent to creating a StringArray consisting of each element of the calling Array using the ToString() method.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

Click here to see the documentation for this object in nanosecond timing precision mode.

 

Overload List

Signatures

Return Value

Description

VirtualArray.ToStringArray()

StringArray

Returns a copy of the Array in the form of a StringArray. This is equivalent to creating a StringArray consisting of each element of the called Array using the ToString() method.

 

Values will be converted to a string representation (e.g. scientific, floating point, or integer) based on the magnitude of the value. If you require a specific format, please use the overload which allows for format specification.

VirtualArray.ToStringArray(String format)

StringArray

Returns a copy of the Array in the form of a StringArray. This is equivalent to creating a StringArray consisting of each element of the called Array using the ToString() method, with the format argument specifying how the numeric value should be formatted.

 

 

See also

VirtualArray Object