LambdaExpression.CompileToMethod 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 lambda 编译到方法定义中。
重载
CompileToMethod(MethodBuilder) |
将 lambda 编译到方法定义中。 |
CompileToMethod(MethodBuilder, DebugInfoGenerator) |
将 lambda 编译到方法定义和自定义调试信息中。 |
CompileToMethod(MethodBuilder)
将 lambda 编译到方法定义中。
public:
void CompileToMethod(System::Reflection::Emit::MethodBuilder ^ method);
public void CompileToMethod (System.Reflection.Emit.MethodBuilder method);
member this.CompileToMethod : System.Reflection.Emit.MethodBuilder -> unit
Public Sub CompileToMethod (method As MethodBuilder)
参数
- method
- MethodBuilder
一个 MethodBuilder,将用于存放 lambda 的 IL。
适用于
CompileToMethod(MethodBuilder, DebugInfoGenerator)
将 lambda 编译到方法定义和自定义调试信息中。
public:
void CompileToMethod(System::Reflection::Emit::MethodBuilder ^ method, System::Runtime::CompilerServices::DebugInfoGenerator ^ debugInfoGenerator);
public void CompileToMethod (System.Reflection.Emit.MethodBuilder method, System.Runtime.CompilerServices.DebugInfoGenerator debugInfoGenerator);
member this.CompileToMethod : System.Reflection.Emit.MethodBuilder * System.Runtime.CompilerServices.DebugInfoGenerator -> unit
Public Sub CompileToMethod (method As MethodBuilder, debugInfoGenerator As DebugInfoGenerator)
参数
- method
- MethodBuilder
一个 MethodBuilder,将用于存放 lambda 的 IL。
- debugInfoGenerator
- DebugInfoGenerator
编译器用于标记序列点并批注局部变量的调试信息生成器。