AutoBot icon indicating copy to clipboard operation
AutoBot copied to clipboard

Support for System.Object[] return type

Open mikeclayton opened this issue 13 years ago • 0 comments

It'd be nice if AutoBot could handle return System.Object[] return values from PowerShell scripts. This should allow him to deal with pipline output.

E.g.

function MultiValueReturn() { "value1"; 100; new-object System.Object; }

returns a System.Object[] containing @("value1", 100, new-object System.Object)

mikeclayton avatar Nov 14 '11 14:11 mikeclayton