This topic has not yet been rated - Rate this topic

ILGenerator Class

Generates Microsoft intermediate language (MSIL) instructions.

System.Object
  System.Reflection.Emit.ILGenerator

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
[ClassInterfaceAttribute(ClassInterfaceType.None)]
[ComVisibleAttribute(true)]
public class ILGenerator : _ILGenerator

The ILGenerator type exposes the following members.

  Name Description
Public property ILOffset Gets the current offset, in bytes, in the Microsoft intermediate language (MSIL) stream that is being emitted by the ILGenerator.
Top
  Name Description
Public method BeginCatchBlock Begins a catch block.
Public method BeginExceptFilterBlock Begins an exception block for a filtered exception.
Public method BeginExceptionBlock Begins an exception block for a non-filtered exception.
Public method BeginFaultBlock Begins an exception fault block in the Microsoft intermediate language (MSIL) stream.
Public method BeginFinallyBlock Begins a finally block in the Microsoft intermediate language (MSIL) instruction stream.
Public method BeginScope Begins a lexical scope.
Public method DeclareLocal(Type) Declares a local variable of the specified type.
Public method DeclareLocal(Type, Boolean) Declares a local variable of the specified type, optionally pinning the object referred to by the variable.
Public method DefineLabel Declares a new label.
Public method Emit(OpCode) Puts the specified instruction onto the stream of instructions.
Public method Emit(OpCode, Byte) Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Double) Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Int16) Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Int32) Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Int64) Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, ConstructorInfo) Puts the specified instruction and metadata token for the specified constructor onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Label) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done.
Public method Emit(OpCode, Label[]) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream and leaves space to include a label when fixes are done.
Public method Emit(OpCode, LocalBuilder) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the index of the given local variable.
Public method Emit(OpCode, SignatureHelper) Puts the specified instruction and a signature token onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, FieldInfo) Puts the specified instruction and metadata token for the specified field onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, MethodInfo) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given method.
Public method Emit(OpCode, SByte) Puts the specified instruction and character argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, Single) Puts the specified instruction and numerical argument onto the Microsoft intermediate language (MSIL) stream of instructions.
Public method Emit(OpCode, String) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given string.
Public method Emit(OpCode, Type) Puts the specified instruction onto the Microsoft intermediate language (MSIL) stream followed by the metadata token for the given type.
Public method EmitCall Puts a call or callvirt instruction onto the Microsoft intermediate language (MSIL) stream to call a varargs method.
Public method EmitCalli(OpCode, CallingConvention, Type, Type[]) Puts a Calli instruction onto the Microsoft intermediate language (MSIL) stream, specifying an unmanaged calling convention for the indirect call.
Public method EmitCalli(OpCode, CallingConventions, Type, Type[], Type[]) Puts a Calli instruction onto the Microsoft intermediate language (MSIL) stream, specifying a managed calling convention for the indirect call.
Public method EmitWriteLine(FieldInfo) Emits the Microsoft intermediate language (MSIL) necessary to call Console.WriteLine with the given field.
Public method EmitWriteLine(LocalBuilder) Emits the Microsoft intermediate language (MSIL) necessary to call Console.WriteLine with the given local variable.
Public method EmitWriteLine(String) Emits the Microsoft intermediate language (MSIL) to call Console.WriteLine with a string.
Public method EndExceptionBlock Ends an exception block.
Public method EndScope Ends a lexical scope.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method MarkLabel Marks the Microsoft intermediate language (MSIL) stream's current position with the given label.
Public method MarkSequencePoint Marks a sequence point in the Microsoft intermediate language (MSIL) stream.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ThrowException Emits an instruction to throw an exception.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method UsingNamespace Specifies the namespace to be used in evaluating locals and watches for the current active lexical scope.
Top
  Name Description
Explicit interface implemetation Private method _ILGenerator.GetIDsOfNames Maps a set of names to a corresponding set of dispatch identifiers.
Explicit interface implemetation Private method _ILGenerator.GetTypeInfo Retrieves the type information for an object, which can then be used to get the type information for an interface.
Explicit interface implemetation Private method _ILGenerator.GetTypeInfoCount Retrieves the number of type information interfaces that an object provides (either 0 or 1).
Explicit interface implemetation Private method _ILGenerator.Invoke Provides access to properties and methods exposed by an object.
Top

ILGenerator is used to generate method bodies for methods and constructors in dynamic assemblies (represented by the MethodBuilder and ConstructorBuilder classes) and for standalone dynamic methods (represented by the DynamicMethod class). To obtain an ILGenerator, use the ConstructorBuilder.GetILGenerator, DynamicMethod.GetILGenerator, and MethodBuilder.GetILGenerator methods.

MSIL is used as input to a just-in-time (JIT) compiler.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ