17
votes
4answers
208 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 …
2
votes
1answer
73 views
Stringbuilder in CIL (MSIL)
Hey there,
I'm trying to generate code that takes a StringBuilder, and writes the values of all the properties in a class to a string. I've got the following, but I'm currently ge …
2
votes
1answer
90 views
How to add Custom Attributes to a DynamicMethod-generated method?
I was playing around with DynamicMethod and Expression Trees' Compilation (which uses DynamicMethod internally).
I then wondered if there is a way to add a custom attribute to the …
0
votes
1answer
59 views
DynamicMethod and out-parameters?
How do I define a DynamicMethod for a delegate that has an out-parameter, like this?
public delegate void TestDelegate(out Action a);
Let's say I simply want a method that sets …
0
votes
3answers
258 views
NHibernate - Reflection or DynamicMethod ?
I have used NHibernbate in few projects and now learned about few more ORMs also. I understand that, NHibernate binds Class to Datalayer dynamically during runtime using the mappin …
0
votes
2answers
293 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
{ …
