Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 4, 2015 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/5bbdeaaab8b8eb232193 to your computer and use it in GitHub Desktop.
Save guitarrapc/5bbdeaaab8b8eb232193 to your computer and use it in GitHub Desktop.
Array in PowerShell Sample
# Array
$array = @();
# int 配列
$stringArray = [int[]](1..10);
# string 配列
$stringArray = [string[]]("a", "b", "c");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment