gpt4 book ai didi

c# - ILGenerator 是否有好的包装器?

转载 作者:太空狗 更新时间:2023-10-29 20:06:46 26 4
gpt4 key购买 nike

<分区>

我现在使用 System.Reflection.Emit 有一段时间了,发现它(谁没有?)和容易出错一样痛苦。

您知道 IL 生成器是否有一个好的包装器,我可以依靠它以比直接使用 SRE 更安全、更容易的方式发出 IL 吗?

编辑:

我知道操纵表达式树绝对比直接发出 IL 更容易和更安全,但它们现在也有一些限制。我无法创建代码块、使用循环、声明和使用多个局部变量等。我们需要等到 .NET 4 出来:)

此外,我正在处理一个已经依赖 SRE 的代码库。

显然,ILGenerator 可以做我需要的一切。但是在操作它时我会很感激更多的帮助。当我提到仍然处于相当低级别的 ILGenerator 包装器时,我想到了一些可以提供如下方法的东西:

// Performs a virtual or direct call on the method, depending if it is a 
// virtual or a static one.
Call(MethodInfo methodInfo)

// Pushes the default value of the type on the stack, then emit
// the Ret opcode.
ReturnDefault(Type type)

// Test the object type to emit the corresponding push
// opcode (Ldstr, Ldc_I*, Ldc_R*, etc.)
LoadConstant(object o)

这确实是 3 个天真的例子,但足以证明我的期望。我们可以将其视为一组扩展方法,但支持条件语句和循环可能会更好,如 RunSharp .事实上,RunSharp 非常接近我想要的,但它过度抽象了 ILGenerator 并且没有公开其所有功能。

我记不得在哪里了,但我已经在一个开源项目中看到过这样的 helper 。

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