作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
有没有办法在代码中获取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/
我是一名优秀的程序员,十分优秀!