Skip to content

Instantly share code, notes, and snippets.

@fuzzmz
Created December 9, 2012 19:58
Show Gist options
  • Select an option

  • Save fuzzmz/4246740 to your computer and use it in GitHub Desktop.

Select an option

Save fuzzmz/4246740 to your computer and use it in GitHub Desktop.
powershell display 2 dimensional array
$a=,@(1,2,3)
$a+=,@(4,5,6)
foreach ($b in $a) {"$b"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment