gpt4 book ai didi

c# - 如何在 Cecil 中获取程序集的属性值

转载 作者:可可西里 更新时间:2023-11-01 08:42:08 27 4
gpt4 key购买 nike

有没有办法在代码中获取str1

[MyAttribute("str1")]
class X {}

Mono.Cecil.CustomAttribute.Fields 的实例是空的。

最佳答案

在 .NET 中使用属性时,您要么使用构造函数参数,要么设置一些(命名的)字段。这在元数据中以不同方式编码,并在 Cecil 中单独结束。

the instance of Mono.Cecil.CustomAttribute.Fields is empty

构造函数参数 用于自定义属性时,您正在使用的是查找字段。所以你要找的是:

type.CustomAttributes[0].ConstructorArguments[0].Value

关于c# - 如何在 Cecil 中获取程序集的属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8452224/

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