c# +将动态方法与属性一起使用
[CustomAttribute]
public bool IsGreen()
{
return true;
}
如何在 C# 中使用 DynamicMethod 编写上述内容?
更新;根据 casperOne,您不能使用自定义属性来执行此操作。
但是非自定义属性怎么样:
[Conditional("DEBUG")]
public bool IsGreen()
{
return true;
}
注意:我创建了一篇新帖子,因为我的上一篇文章错过了这一点: 我的目的是......我如何动态创建一个包含属性的方法?
另外,我问关于使用DynamicMethod,有更好的方法吗?
[CustomAttribute]
public bool IsGreen()
{
return true;
}
How could one write the above using a DynamicMethod in c#?
UPDATE; per casperOne you cannot do this with a custom attribute.
But what about a non-custom attribute such as:
[Conditional("DEBUG")]
public bool IsGreen()
{
return true;
}
Note: I created a new post, because my last one missed the point which is:
What im driving at is...how do i dynamically create a method that contains an attribute?
Also, i asked about using DynamicMethod, is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。来自
DynamicMethod
类上的IsDefined
方法:如果您想创建动态方法,那么您必须动态创建程序集/模块/类型/方法,然后将属性附加到它。
You cannot. From the note in the remarks section for the documentation for the
IsDefined
method on theDynamicMethod
class:If you want to create dynamic methods then you will have to create an assembly/module/type/method dynamically and then attach the attributes to that.