ShowArray Function | |
Dump the contents of an array to the terminal window
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION ShowArray(
aTest AS ARRAY,
cPrefix AS STRING
) AS VOID
public static void ShowArray(
Array aTest,
[DefaultParameterValueAttribute("", 0)] string cPrefix
)
Request Example
View SourceParameters
- aTest
- Type: Array
Array to dump - cPrefix
- Type: String
Name to show before the array brackets. Defaults to 'a'
Return Value
Type:
Nothing
Remarks This dumps the information to the terminal window.
This will only work if the main application is a console application.
See Also