作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够为我的 powershell 函数创建和分配自定义属性。我到处看,似乎有可能,但我还没有看到一个例子。我在 C# 中创建了一个自定义属性,并在我的 powershell 脚本中引用了程序集。但是,我收到一条错误消息 Unexpected attribute 'MyDll.MyCustom'.
这是我所拥有的:
MyDll.dll 中的 MyCustomAttribute:
namespace MyDll
{
[AttributeUsage(AttributeTargets.All, Inherited = true, AllowMultiple = false)]
public sealed class MyCustomAttribute : Attribute
{
public MyCustomAttribute(String Name)
{
this.Name= Name;
}
public string Name { get; private set; }
}
}
Add-Type -Path "./MyDll.dll";
function foo {
[MyDll.MyCustom(Name = "This is a good function")]
# Do stuff
}
$x = New-Object -TypeName "MyDll.MyCustomAttribute" -ArgumentList "Hello"
最佳答案
看起来你需要改变两件事:
param()
之前堵塞。 Name =
说明符似乎导致 PowerShell 解析器将属性参数视为初始值设定项,此时构造函数将无法解析。 function foo {
[MyDll.MyCustom("This is a good function")]
param()
# Do stuff
}
关于function - 如何在 PowerShell 中创建和使用自定义函数属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41525582/
我是一名优秀的程序员,十分优秀!