LocalBuilder::SetLocalSymInfo Method (String^, Int32, Int32)
Sets the name and lexical scope of this local variable.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
-
Type:
System::String^
The name of the local variable.
- startOffset
-
Type:
System::Int32
The beginning offset of the lexical scope of the local variable.
- endOffset
-
Type:
System::Int32
The ending offset of the lexical scope of the local variable.
| Exception | Condition |
|---|---|
| InvalidOperationException | The containing type has been created with CreateType. -or- There is no symbolic writer defined for the containing module. |
| NotSupportedException | This local is defined in a dynamic method, rather than in a method of a dynamic type. |
The SetLocalSymInfo method is supported for methods defined in dynamic types. It is not supported for dynamic methods defined using the DynamicMethod class.
The following code sample illustrates the use of the SetLocalSymInfo method. This code is part of a larger example for the LocalBuilder class.
// 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 );
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1