自定义PowerShell类中的重载下标或[]运算符

时间:2019-04-04 16:26:55

标签: class powershell-v5.0 subscript

如何在PowerShell中重载下标或[]数组运算符?

在C#中,我仅定义ex的方法:

public class Foo
{
   ...
   public FooType this[string BarVar]
   public FooType this[BarType BarVar]
}

所以我可以访问Foo["bar"]Foo[new BarType("bar")]

我似乎在PowerShell中找不到合适的语法。

致谢

0 个答案:

没有答案