After calling a function, which returns an object, I try to store the value on stack in a local variable and then push it back, but it fails with an exception
Exception has been thrown with a target of invocation
Code is as follows:
.....
MethodInfo checked_static = typeof(NameSpace1.Class1).GetMethod(
"Check", new Type[1] { typeof(object) });
adderIL.Emit(OpCodes.Callvirt, checked_static);
adderIL.Emit(OpCodes.Stloc_3);
adderIL.Emit(OpCodes.Ldloc_3);
adderIL.Emit(OpCodes.Brfalse, TRUE);
.....
If I remove Stloc_3 and Ldloc_3 everything works fine, I am lost here.