Closed aheubusch closed 9 years ago
Changes current behavior
PASH C:\> $array="one","two" PASH C:\> echoargs.exe $array Arg 0 is <one two> Command line: "C:\echoargs.exe" "one two" PASH C:\>
to
PASH C:\> $array="one","two" PASH C:\> echoargs.exe $array Arg 0 is <one> Arg 1 is <two> Command line: "C:\echoargs.exe" one two PASH C:\>
PowerShell for comparsion
PS C:\> $array="one","two" PS C:\> echoargs.exe $array Arg 0 is <one> Arg 1 is <two> Command line: "C:\EchoArgs.exe" one two PS C:\>
Would you be able to add some tests for this change?
Changes current behavior
to
PowerShell for comparsion