在Powershell中使用名称参数构造函数创建对象

时间:2016-10-14 11:39:11

标签: c# powershell named-parameters

我有C#构造函数

class A {
   public A (name="",version=""){
     //do something
   }
}

相应的DLL在Powershell中导入。 我想通过传递命名参数来创建A对象。

$a = New-Object ABC.XYZ.A -ArgumentList @()  //pass named params

我找不到使用constructor which takes optional named parameters [there are around 20 params]创建对象的doc / example。

1 个答案:

答案 0 :(得分:3)

我不认为这是可能的,但你可以通过从20个参数派生类来解决它。请参阅以下

$Source = @"
namespace DontCare
{
    /**/
    public class TheCrazyClassWith20parametersCtor
    {
        public TheCrazyClassWith20parametersCtor(/* 20 named parameters here*/)
        {}
    }

    public class MyWrapper : TheCrazyClassWith20parametersCtor
    {
        public MyWrapper(int param1, string param2)
        : base(
            /* use named parameters here*/
        )
        {} 
    }
}
"@

Add-Type -TypeDefinition $Source -Language CSharp

New-Object -TypeName DontCare.MyWrapper -ArgumentList 42,"Hi!"

HTH