共用方式為


DynamicILInfo.SetCode 方法

定義

設定關聯之動態方法的程式碼主體。

多載

SetCode(Byte[], Int32)

設定關聯之動態方法的程式碼主體。

SetCode(Byte*, Int32, Int32)

設定關聯之動態方法的程式碼主體。

SetCode(Byte[], Int32)

來源:
DynamicILGenerator.cs
來源:
DynamicILGenerator.cs
來源:
DynamicILGenerator.cs

設定關聯之動態方法的程式碼主體。

public:
 void SetCode(cli::array <System::Byte> ^ code, int maxStackSize);
public void SetCode (byte[]? code, int maxStackSize);
public void SetCode (byte[] code, int maxStackSize);
member this.SetCode : byte[] * int -> unit
Public Sub SetCode (code As Byte(), maxStackSize As Integer)

參數

code
Byte[]

包含 MSIL 資料流的陣列。

maxStackSize
Int32

執行此方法時,運算元堆疊上的最大項目數。

備註

MSIL 數據流上不會執行任何有效性檢查。

第二次呼叫此方法會將第一個 MSIL 數據流取代為第二個。

產生您自己的元數據和 MSIL 需要熟悉 Common Language Infrastructure (CLI) 檔,特別是「分割 II:元數據定義和語意」和「分割區 III:CIL 指令集」。 如需詳細資訊,請參閱 ECMA 335 Common Language Infrastructure (CLI)

適用於

SetCode(Byte*, Int32, Int32)

來源:
DynamicILGenerator.cs
來源:
DynamicILGenerator.cs
來源:
DynamicILGenerator.cs

重要

此 API 不符合 CLS 規範。

符合 CLS 規範替代方案
System.Reflection.Emit.DynamicILInfo.SetCode(Byte[], Int32)

設定關聯之動態方法的程式碼主體。

public:
 void SetCode(System::Byte* code, int codeSize, int maxStackSize);
[System.CLSCompliant(false)]
public void SetCode (byte* code, int codeSize, int maxStackSize);
[System.CLSCompliant(false)]
[System.Security.SecurityCritical]
public void SetCode (byte* code, int codeSize, int maxStackSize);
[<System.CLSCompliant(false)>]
member this.SetCode : nativeptr<byte> * int * int -> unit
[<System.CLSCompliant(false)>]
[<System.Security.SecurityCritical>]
member this.SetCode : nativeptr<byte> * int * int -> unit

參數

code
Byte*

指標,指向包含 MSIL 資料流的位元組陣列。

codeSize
Int32

在 MSIL 資料流中的位元組數目。

maxStackSize
Int32

執行此方法時,運算元堆疊上的最大項目數。

屬性

例外狀況

codenullcodeSize 大於 0。

codeSize 小於 0。

備註

MSIL 數據流上不會執行任何有效性檢查。

第二次呼叫此方法會將第一個 MSIL 數據流取代為第二個。

產生您自己的元數據和 MSIL 需要熟悉 Common Language Infrastructure (CLI) 檔,特別是「分割 II:元數據定義和語意」和「分割區 III:CIL 指令集」。如需詳細資訊,請參閱 ECMA 335 Common Language Infrastructure (CLI)

適用於