Tagged Questions

30
votes
1answer
475 views

C#/.NET: Why is Calli Faster Than a Delegate Call?

I was playing around with Reflection.Emit and found about about the little-used EmitCalli. Intrigued, I wondered if it's any different from a regular method call, so I whipped up the code below: ...
8
votes
1answer
216 views

Using Reflection.Emit to emit a “using (x) { … }” block?

I'm trying to use Reflection.Emit in C# to emit a using (x) { ... } block. At the point I am in code, I need to take the current top of the stack, which is an object that implements IDisposable, ...
5
votes
1answer
51 views

ILGenerator: How to use unmanaged pointers? (I get a VerificationException)

I'm making a sound synthesis program in wich the user can create his own sounds doing node-base compositing, creating oscillators, filters, etc... The program compiles the nodes onto an intermediary ...
4
votes
2answers
3k views

Dynamic object property populator (without reflection)

I want to populate an object's properties without using reflection in a manner similar to the DynamicBuilder on CodeProject. The CodeProject example is tailored for populating entities using a ...
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 ...
1
vote
3answers
112 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 ...
1
vote
1answer
261 views

Place an object on top of stack in ILGenerator

I have to pass a function an instance of an object, so obviously all the information to be taken as argument is to be loaded onto the evaluation stack Here is the code that i am looking for someClass ...
1
vote
2answers
2k views

Dynamic event generation in C# using DynamicMethod and ILGenerator

I need to generate an event handler based on an EventInfo object in runtime and call a method within that event handler. Something like the following: public void RegisterAction(ActionData ...
0
votes
1answer
94 views

Where is the output file of microsoft ILGenerator?

I've used Microsoft ILGenerator and its Emit member. I want to know where I can find the output il file which is generated by it.
0
votes
2answers
383 views

Convert C# code

I need to simulate in C# code (with ilGenerator.Emit) the following function public void AssignAttribute(ref ValueHolder output, Assignment assignment) { ResultAttribute attribute = null; if ...