gpt4 book ai didi

.net - 如何使用 Mono.Cecil 重新抛出来替换 ILAsm 抛出?

转载 作者:行者123 更新时间:2023-12-02 15:02:05 26 4
gpt4 key购买 nike

我有一个 C# dll,其成员类似于以下内容:

public void DoStuff(int i) {
try {
something.InnerDoStuff(i);
}
catch (Exception ex) {
throw ex;
}
}

我想出了如何获取throw opcode :

Add-Type -Path 'c:\Program Files\ILSpy2\Mono.Cecil.dll'
Add-Type -Path 'c:\Program Files\ILSpy2\Mono.Cecil.pdb.dll'

$dll = 'c:\Program Files\ZippySoft\Something\foo.dll'
$assemblyDefinition = [Mono.Cecil.AssemblyDefinition]::ReadAssembly($dll);

$doThingsIlAsm = (
(
$assemblyDefinition.MainModule.Types `
| where { $_.Name -eq 'DoerOfThings' } `
| select -first 1 *
).Methods | where { $_.Name -eq 'DoStuff' }
).Body.Instructions

$throwOp = ($doThingsIlAsm | where {
$_.OpCode.Name -eq 'throw'
})

我的问题是如何用 rethrow opcode 替换 throw 操作码?

最佳答案

我相信您可以获得ILProcessor对于你的方法,Create rethrow 操作码,然后使用处理器的 Replace方法将 throw 替换为 rethrow

不要立即获取方法主体的指令,而是获取对方法主体的引用并使用它来获取 myMethod.Body.GetIlProcessor 以及 myMethod.Body.Instructions。然后你就可以找到原来的 throw 指令,并使用 Replace 方法将它们交换出来。

这还没有经过测试,但我认为其要点是:

$throw = # your existing stuff
$il = myMethod.Body.GetIlProcessor()
$rethrow = $il.Create(OpCodes.Rethrow) # not sure about the powershell syntax for enums
$il.Replace($throw, $rethrow)

关于.net - 如何使用 Mono.Cecil 重新抛出来替换 ILAsm 抛出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12096164/

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