Tagged Questions
30
votes
2answers
536 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:
...
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
123 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
96 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 ...
1
vote
2answers
47 views
Retrieve code from ILGenerator
I have write some function to create an exe file using ILGenerator. What I want is to show to user the IL language generated whithout using external tools like ILDasm or Reflector.
during the ...
1
vote
1answer
47 views
A simple Pop and then load back does not work
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 ...
1
vote
1answer
278 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
1answer
252 views
Are there any gotchas or good reasons not to use autosproc for stored procedure calls?
I've implemented a data access layer that populates generic entities from a datareader using a variation of the third monkey approach ...
0
votes
2answers
153 views
How to call a 'normal' method through ILGenerator.Emit*?
Is it possible for a DynamicMethod to call (via ILGenerator.EmitCall -- or similar -- for instance) a 'normal' method, e.g. Private Sub BlahBlah(ByVal obj as Object)?
Thanks in advance