How use system.tuple in powershell?
Just for curiosity, it's not a 'I must have it', but how declare a tuple using system.tuple class in powershell? I'm using powershell.exe.config to load framework 4.0 but I'm not able to create a tuple. Trying this: PS C:\ps1> $a = [System.Tuple``2]::Create( "pino", 34) Chiamata al metodo non riuscita. [System.Tuple`2] non contiene un metodo denominato 'Create'. In riga:1 car:31 + $a = [System.Tuple``2]::Create <<<< ( "pino", 34) + CategoryInfo : InvalidOperation: (Create:String) [], RuntimeException + FullyQualifiedErrorId : MethodNotFound sorry for Italian sample... Thank you for help. EDIT: