Skip to content

Instantly share code, notes, and snippets.

@kpatnayakuni
Last active January 21, 2019 12:57
Show Gist options
  • Select an option

  • Save kpatnayakuni/9efae09c516ab6251b9d2d1db42733ec to your computer and use it in GitHub Desktop.

Select an option

Save kpatnayakuni/9efae09c516ab6251b9d2d1db42733ec to your computer and use it in GitHub Desktop.
Function Demo-Splatting
{
param
(
[int] $a,
[int] $b,
[int] $c
)
$PSBoundParameters
}
Demo-Splatting -a 97 -b 98 -c 99
$p = @{a=97;b=98;c=99}
Demo-Splatting @p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment