我有一个Mono.Cecil.Cil.Instruction对象,表示代码中的方法调用。我想获取源文件中方法调用的行号。
此旧帖子提到使用指令对象How to get source/line number for IL instruction using Mono.Cecil的SequencePoint属性。但是,在Mono.Cecil的0.10.2版中看不到此属性。
答案 0 :(得分:0)
在这里找到解决方案:http://cecil.pe/post/149243207656/mono-cecil-010-beta-1
Instruction.SequencePoint已被删除。您现在必须使用:
MethodDefinition method = ...;
Instruction instr = ...;
SequencePoint seqPoint = method.DebugInformation.GetSequencePoint(instr);