Tagged Questions
35
votes
5answers
1k views
Curiosity: Why does Expression<…> when compiled run faster than a minimal DynamicMethod?
I'm currently doing some last-measure optimizations, mostly for fun and learning, and discovered something that left me with a couple of questions.
First, the questions:
When I construct a method ...
4
votes
4answers
630 views
Runtime code injection using DynamicMethod?
Consider the following trivial code:
using System;
class Test
{
delegate int FooDelegate(int i);
FooDelegate Foo = FooImplementation;
static int FooImplementation(int i)
{
...
1
vote
2answers
856 views
Strange parameter sequence using Reflection.Emit
I have been looking at Reflection.Emit recently. I wrote a simple program that generates a DynamicMethod which simple calls another method with the same parameters
class Program
{
static void ...
0
votes
1answer
35 views
Why can I not bind a DynamicMethod to a struct instance?
DynamicMethods allow you to specify a target instance for the delegate you create. However, it appears that this does not work when you use a struct type. It fails with an exception telling me it ...
0
votes
1answer
316 views
JIT Compiler error - Invalid Program Exception using Reflection.Emit
Can someone explain to me why the following works for the first test but throws an InvalidProgramException for the second test? I'm stumped.
using System;
using System.Reflection;
using ...