我需要在 PowerShell 中创建一个 .NET 对象。构造函数的签名是:
public ObjCTor(TClient param1, Func<TClient, IInterface> param2)
该类定义为:
public class ObjCTor<TClient> : IOtherInt1, IOtherInt2 where TClient : ConcreteBase
第一个参数很简单。我被第二个难住了。如何将 PowerShell 函数传递为Func<T1, T2>
?
更新