Tagged Questions

4
votes
3answers
1k views

Is there a good wrapper around ILGenerator?

I'm using System.Reflection.Emit for a while now, and find it (who don't?) as painful as bug prone. Do you know if there is a good wrapper around the IL Generator, something that I can rely on to ...
3
votes
3answers
97 views

ILGenerator method inlining

Given following code: using System; using System.Reflection.Emit; using System.Diagnostics; using System.Reflection; namespace ConsoleApplication1 { class A { public int Do(int n) ...
3
votes
1answer
95 views

Why is it necessary to load every argument onto the stack in CIL method?

in my application I need to dynamically create a type that contains multiple properties. I am aware that in cases such as this, one has to generate an CIL for both getter and setter methods of a ...
2
votes
1answer
151 views

Using System.Reflection.Emit.ILGenerator to call Random in VB.Net?

I'm generating output for a .Net executable from my own language... the opcode (called 'Random') that's being translated from my language is supposed to create a random number within a specific range. ...
1
vote
3answers
113 views

Redirecting to a dynamic method from a generic event handler

I'm trying to write a class that's to be used to trigger a call to a method from an arbitrary event but I'm stuck as I simply cannot figure out a way to reference 'this' from emitted MSIL code. This ...