ShowFoxArray Function | |
Dump the contents of an array to the terminal window
Namespace:
XSharp.VFP
Assembly:
XSharp.VFP (in XSharp.VFP.dll) Version: 2.19
Syntax FUNCTION ShowFoxArray(
aPar AS ARRAY,
cPrefix AS STRING
) AS VOID
public static void ShowFoxArray(
Array aPar,
[DefaultParameterValueAttribute("", 0)] string cPrefix
)
Request Example
View SourceParameters
- aPar
- Type: Array
- 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