我有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。
答案 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