ILGenerator.Emit Method (OpCode, FieldInfo)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Puts the specified instruction and metadata token for the specified field onto the Microsoft intermediate language (MSIL) stream of instructions.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable Sub Emit ( _
opcode As OpCode, _
field As FieldInfo _
)
public virtual void Emit(
OpCode opcode,
FieldInfo field
)
Parameters
- opcode
Type: System.Reflection.Emit.OpCode
The MSIL instruction to be emitted onto the stream.
- field
Type: System.Reflection.FieldInfo
A field that is the target of opcode.
Remarks
The instruction values are defined in the OpCodes enumeration.
The location of field is recorded so that the instruction stream can be patched if necessary when persisting the module to a portable executable (PE) file.
Examples
The following example demonstrates the use of Emit method overloads to emit an instruction that requires a FieldInfo and an instruction that requires a MethodInfo. The first instruction loads an object from a static field (Shared field in Visual Basic), and the second instruction calls the get accessor for a property of the object.
This code is part of a larger example provided for the BeginExceptionBlock method.
adderIL.Emit(OpCodes.Ldsfld, demoOutput)
adderIL.Emit(OpCodes.Callvirt, getter)
adderIL.Emit(OpCodes.Ldsfld, demoOutput);
adderIL.Emit(OpCodes.Callvirt, getter);
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.