Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 4, 2015 15:27
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/a76573d6e4fca5bb2dc6 to your computer and use it in GitHub Desktop.
Save guitarrapc/a76573d6e4fca5bb2dc6 to your computer and use it in GitHub Desktop.
このクソ仕様
function Fuga
{
[OutputType([List[string]])]
[CmdletBinding()]
param()
$array = [string[]]("a")
return $array
}
(Fuga).GetType().FullName # System.String !?
using namespace System.Collections.Generic;
function Hoge
{
[OutputType([List[string]])]
[CmdletBinding()]
param()
$list = New-Object List[string];
$list.Add("a");
return $list;
}
(Hoge).GetType().FullName # System.String !?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment