Skip to content

Instantly share code, notes, and snippets.

@shaneis
Created May 22, 2018 16:09
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 shaneis/6b678a0bcbb7d29e3ac33b763f4ef0ff to your computer and use it in GitHub Desktop.
Save shaneis/6b678a0bcbb7d29e3ac33b763f4ef0ff to your computer and use it in GitHub Desktop.
int vs string
[int]$number = 5
[PSCustomObject]@{ Id = 1; Num = $number }
[string]$number2 = 5
[PSCustomObject]@{ Id = 1; Num = $number }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment