LambdaExpression.CompileToMethod 方法

定义

将 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

编译器用于标记序列点并批注局部变量的调试信息生成器。

适用于