I want to call certain methods via delegates but am getting VerificationException. I am using following code:

    internal delegate void Delegete_add_Startup(object o, StartupEventHandler s);
    Delegete_add_Startup del;

    public App()
    {
        //this.Startup += this.Application_Startup;

        Type[] parameterTypes = new Type[2];
        parameterTypes[0] = typeof(object);
        parameterTypes[1] = typeof(StartupEventHandler);

        MethodInfo mi = typeof(Application).GetMethod("add_Startup", BindingFlags.Public | BindingFlags.Instance);

        DynamicMethod method = new DynamicMethod(string.Empty, mi.ReturnType, parameterTypes);
        method.InitLocals = true;
        ILGenerator iLGenerator = method.GetILGenerator();
        iLGenerator.Emit(OpCodes.Ldarg_0);
        iLGenerator.Emit(OpCodes.Ldarg_1);
        iLGenerator.Emit(OpCodes.Call, mi);
        iLGenerator.Emit(OpCodes.Ret);
        del = (Delegete_add_Startup)method.CreateDelegate(typeof(Delegete_add_Startup));


        del(this, new StartupEventHandler(Application_Startup));


        this.Exit += this.Application_Exit;
        this.UnhandledException += this.Application_UnhandledException;

        InitializeComponent();
    }

Basically, I am trying to call

this.Startup += this.Application_Startup;

via a delegate using the code above.

This gives a VerificationException: Operation could destabilize the runtime exception.

This is very easy to reproduce by putting this code in the App constructor of a brand new Silverlight App project. What am I doing wrong?

link|improve this question
^^Bump anyone^^ ?? – BondGeek Apr 15 '11 at 5:23
I experience the same problem. Did you find any clue for it? Even with a very simple OpCodes.Call without any argument and no return value, I get the problem. – picrap Jun 15 '11 at 8:45
feedback

1 Answer

For your case, you may replace OpCodes.Call by OpCodes.CallVirt, it should work better (untested and ununderstood, I'm a rookie at Silverlight CLR subtleties).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.