作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个 Fody 插件,我能够注入(inject)我的代码并向用户提供错误消息。我能够确定指令的序列点,但找不到找到 CustomAttributes 序列点的方法。
我需要获取此信息,以便为调试器提供一个提示,提示在何处查找错误位置,以防属性应用错误。
所以基本上我有这样的东西:
[MyAttribute]
public void Test()
{
}
现在我想获取MyAttribute属性的SequencePoint。
我可以像这样访问指令的序列点:
public static SequencePoint GetSP(MethodDefinition method)
{
return method.Body.Instructions
.Where(instruction => instruction.SequencePoint != null)
.Select(instruction => instruction.SequencePoint)
.FirstOrDefault();
}
这对于指令来说工作得很好,但是当我访问一个属性时,我不确定如何获取序列点:
public static SequencePoint GetSP(MethodDefinition method)
{
var attribute = method.CustomAttributes.First();
// what to enter here to get SequencePoint of attribute?
}
最佳答案
这是不可能的。属性没有序列点。
我建议您只使用该方法的第一个序列点。
关于c# - 在 Fody/Mono.Cecil 中获取 CustomAttribute 的 SequencePoint,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28417648/
我正在编写一个 Fody 插件,我能够注入(inject)我的代码并向用户提供错误消息。我能够确定指令的序列点,但找不到找到 CustomAttributes 序列点的方法。 我需要获取此信息,以便为
我是一名优秀的程序员,十分优秀!