MethodBuilder.SetMethodBody 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
通过使用 Microsoft 中间语言 (MSIL) 指令指定的字节数组创建方法的主体。
public:
void SetMethodBody(cli::array <System::Byte> ^ il, int maxStack, cli::array <System::Byte> ^ localSignature, System::Collections::Generic::IEnumerable<System::Reflection::Emit::ExceptionHandler> ^ exceptionHandlers, System::Collections::Generic::IEnumerable<int> ^ tokenFixups);
public void SetMethodBody (byte[] il, int maxStack, byte[] localSignature, System.Collections.Generic.IEnumerable<System.Reflection.Emit.ExceptionHandler> exceptionHandlers, System.Collections.Generic.IEnumerable<int> tokenFixups);
member this.SetMethodBody : byte[] * int * byte[] * seq<System.Reflection.Emit.ExceptionHandler> * seq<int> -> unit
Public Sub SetMethodBody (il As Byte(), maxStack As Integer, localSignature As Byte(), exceptionHandlers As IEnumerable(Of ExceptionHandler), tokenFixups As IEnumerable(Of Integer))
参数
- il
- Byte[]
包含有效 MSIL 指令的数组。
- maxStack
- Int32
最大堆栈评估深度。
- localSignature
- Byte[]
包含序列化本地变量结构的字节数组。 如果此方法不具有任何本地变量,则指定 null
。
- exceptionHandlers
- IEnumerable<ExceptionHandler>
包含此方法的异常处理程序的集合。 如果此方法没有异常处理程序,则指定 null
。
- tokenFixups
- IEnumerable<Int32>
表示 il
中的偏移量的值的集合,其中的每个值指定可以修改的令牌起始点。 如果此方法没有需要修改的令牌,则指定 null
。
例外
il
为 null
。
maxStack
为负数。
- 或 -
其中一个 exceptionHandlers
指定 il
外部的偏移量。
- 或 -
其中一个 tokenFixups
指定 il
数组外部的偏移量。