gpt4 book ai didi

c# + 将动态方法与属性一起使用

转载 作者:太空宇宙 更新时间:2023-11-03 16:52:33 26 4
gpt4 key购买 nike

[CustomAttribute]
public bool IsGreen()
{
return true;
}

如何在 C# 中使用 DynamicMethod 编写上述内容?

更新;根据 casperOne,您不能使用自定义属性执行此操作。

但是非自定义属性怎么样:

[Conditional("DEBUG")]
public bool IsGreen()
{
return true;
}

注意:我创建了一个新帖子,因为我的上一个帖子错过了要点:我的目的是...如何动态创建包含属性的方法?

另外,我问了关于使用 DynamicMethod 的问题,有没有更好的方法?

最佳答案

你不能。来自 IsDefined method on the DynamicMethod class 文档的备注部分中的注释:

Custom attributes are not currently supported on dynamic methods.

如果您想创建动态方法,则必须动态创建程序集/模块/类型/方法,然后将属性附加到它。

关于c# + 将动态方法与属性一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3441492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com