次の方法で共有


LocalBuilder.SetLocalSymInfo メソッド

定義

ローカル変数のシンボリック情報を設定します。

オーバーロード

SetLocalSymInfo(String)

このローカル変数の名前を設定します。

SetLocalSymInfo(String, Int32, Int32)

このローカル変数の名前と字句スコープを設定します。

SetLocalSymInfo(String)

このローカル変数の名前を設定します。

public:
 void SetLocalSymInfo(System::String ^ name);
public void SetLocalSymInfo (string name);
member this.SetLocalSymInfo : string -> unit
Public Sub SetLocalSymInfo (name As String)

パラメーター

name
String

ローカル変数の名前。

例外

包含型は、CreateType()で作成されています。

-又は-

包含モジュールに対してシンボリック・ライターが定義されていません。

このローカルは、動的型のメソッドではなく、動的メソッドで定義されます。

namenullです。

次のコード サンプルは、SetLocalSymInfo メソッドの使用方法を示しています。 このコードは、LocalBuilder クラスの大きな例の一部です。

// Create local variables named myString and myInt.
LocalBuilder^ myLB1 = myMethodIL->DeclareLocal( String::typeid );
myLB1->SetLocalSymInfo( "myString" );
Console::WriteLine( "local 'myString' type is: {0}", myLB1->LocalType );

LocalBuilder^ myLB2 = myMethodIL->DeclareLocal( int::typeid );
myLB2->SetLocalSymInfo( "myInt", 1, 2 );
Console::WriteLine( "local 'myInt' type is: {0}", myLB2->LocalType );
// Create local variables named myString and myInt.
LocalBuilder myLB1 = myMethodIL.DeclareLocal(typeof(string));
myLB1.SetLocalSymInfo("myString");
Console.WriteLine("local 'myString' type is: {0}", myLB1.LocalType);

LocalBuilder myLB2 = myMethodIL.DeclareLocal(typeof(int));
myLB2.SetLocalSymInfo("myInt", 1, 2);
Console.WriteLine("local 'myInt' type is: {0}", myLB2.LocalType);
' Create local variables named myString and myInt.
Dim myLB1 As LocalBuilder = myMethodIL.DeclareLocal(GetType(String))
myLB1.SetLocalSymInfo("myString")
Console.WriteLine("local 'myString' type is: {0}", myLB1.LocalType)

Dim myLB2 As LocalBuilder = myMethodIL.DeclareLocal(GetType(Integer))
myLB2.SetLocalSymInfo("myInt", 1, 2)
Console.WriteLine("local 'myInt' type is: {0}", myLB2.LocalType)

注釈

SetLocalSymInfo メソッドは、動的な型で定義されたメソッドでサポートされています。 DynamicMethod クラスを使用して定義された動的メソッドではサポートされていません。

適用対象

SetLocalSymInfo(String, Int32, Int32)

このローカル変数の名前と字句スコープを設定します。

public:
 void SetLocalSymInfo(System::String ^ name, int startOffset, int endOffset);
public void SetLocalSymInfo (string name, int startOffset, int endOffset);
member this.SetLocalSymInfo : string * int * int -> unit
Public Sub SetLocalSymInfo (name As String, startOffset As Integer, endOffset As Integer)

パラメーター

name
String

ローカル変数の名前。

startOffset
Int32

ローカル変数の字句スコープの開始オフセット。

endOffset
Int32

ローカル変数の字句スコープの終了オフセット。

例外

包含型は、CreateType()で作成されています。

-又は-

包含モジュールに対してシンボリック・ライターが定義されていません。

このローカルは、動的型のメソッドではなく、動的メソッドで定義されます。

次のコード サンプルは、SetLocalSymInfo メソッドの使用方法を示しています。 このコードは、LocalBuilder クラスの大きな例の一部です。

// Create local variables named myString and myInt.
LocalBuilder^ myLB1 = myMethodIL->DeclareLocal( String::typeid );
myLB1->SetLocalSymInfo( "myString" );
Console::WriteLine( "local 'myString' type is: {0}", myLB1->LocalType );

LocalBuilder^ myLB2 = myMethodIL->DeclareLocal( int::typeid );
myLB2->SetLocalSymInfo( "myInt", 1, 2 );
Console::WriteLine( "local 'myInt' type is: {0}", myLB2->LocalType );
// Create local variables named myString and myInt.
LocalBuilder myLB1 = myMethodIL.DeclareLocal(typeof(string));
myLB1.SetLocalSymInfo("myString");
Console.WriteLine("local 'myString' type is: {0}", myLB1.LocalType);

LocalBuilder myLB2 = myMethodIL.DeclareLocal(typeof(int));
myLB2.SetLocalSymInfo("myInt", 1, 2);
Console.WriteLine("local 'myInt' type is: {0}", myLB2.LocalType);
' Create local variables named myString and myInt.
Dim myLB1 As LocalBuilder = myMethodIL.DeclareLocal(GetType(String))
myLB1.SetLocalSymInfo("myString")
Console.WriteLine("local 'myString' type is: {0}", myLB1.LocalType)

Dim myLB2 As LocalBuilder = myMethodIL.DeclareLocal(GetType(Integer))
myLB2.SetLocalSymInfo("myInt", 1, 2)
Console.WriteLine("local 'myInt' type is: {0}", myLB2.LocalType)

注釈

SetLocalSymInfo メソッドは、動的な型で定義されたメソッドでサポートされています。 DynamicMethod クラスを使用して定義された動的メソッドではサポートされていません。

適用対象