ShowObject Function | |
Dump the contents of an object to the terminal window
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION ShowObject(
oObject AS Object,
cPrefix AS STRING
) AS VOID
public static void ShowObject(
Object oObject,
[DefaultParameterValueAttribute("", 0)] string cPrefix
)
Request Example
View SourceParameters
- oObject
- Type: Object
Object to dump - cPrefix
- Type: String
Name to show before the field names. Defaults to 'o'
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