DynamicMethod.GetILGenerator Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a Microsoft intermediate language (MSIL) generator for the method with a default MSIL stream size of 64 bytes.
Assembly: mscorlib (in mscorlib.dll)
After a dynamic method has been completed, by calling the CreateDelegate or Invoke method, any further attempt to add MSIL is ignored. No exception is thrown.
The following example shows how to use the GetILGenerator method to emit the body for a simple dynamic method. The method has two parameters, a format string and an integer. The method calls the String.Format(String, Object) method overload with these two arguments, and returns the result.
Note: |
|---|
To run this example, see Building examples that have static TextBlock controls for Windows Phone 8. |
Imports System.Reflection.Emit Imports System.Reflection Public Class Example ' Declare a delegate that can be used to execute the dynamic method. Private Delegate Function Caller(ByVal msg As String, _ ByVal number As Integer) As String Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) ' Create an array that specifies the types of the parameters ' of the dynamic method. This method has a String parameter ' and an Integer parameter. Dim paramTypes() As Type = { GetType(String), GetType(Integer) } ' Create an unnamed dynamic method with a return type of ' Integer and with two parameters whose types are specified by ' the array paramTypes. The dynamic method is anonymously ' hosted. Dim method As New DynamicMethod("", GetType(String), paramTypes) ' Get a MethodInfo for the overload of String.Format that ' takes a format string and an object for insertion in the format ' string. The dynamic method uses this overload to format the ' return string. Dim stringFormat As MethodInfo = GetType(String). _ GetMethod("Format", New Type() { GetType(String), GetType(Object) }) ' Get an ILGenerator and emit a body for the dynamic method. Dim il As ILGenerator = method.GetILGenerator() ' Load the arguments onto the execution stack. The second ' argument is an Integer, so it must be boxed before it can be ' passed to a parameter of type Object. il.Emit(OpCodes.Ldarg_0) il.Emit(OpCodes.Ldarg_1) il.Emit(OpCodes.Box, GetType(Integer)) ' Call the String.Format method. The return value from that call ' is placed on the execution stack, so the dynamic method simply ' returns. il.Emit(OpCodes.Call, stringFormat) il.Emit(OpCodes.Ret) ' Create a delegate that represents the dynamic method. This ' action completes the dynamic method, and any further attempts ' to change the method have no effect. Dim callMethod As Caller = method.CreateDelegate(GetType(Caller)) ' Invoke the delegate and display the result. Dim ret As String = callMethod("The second argument is: {0}.", 1969) outputBlock.Text &= _ String.Format("Invoking the delegate returned the string '{0}'.", ret) End Sub End Class ' This code example produces the following output: ' 'Invoking the delegate returned the string 'The second argument is: 1969.'.
Note: