Tagged Questions

4
votes
1answer
128 views

Replace the ref of a parameter without using the ref keyword (using IL)

I am looking to be able to replace the object reference of a parameter without having to use the ref keyword. The reason that I am avoiding using ref is to preserve collection initializer invocation ...
4
votes
1answer
242 views

Stringbuilder in CIL (MSIL)

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 getting a "Invalid method token" ...
3
votes
2answers
96 views

Saving a DynamicMethod to disk

I have inherited code that uses DynamicMethod to generate methods at runtime. I also need to modify some of the code that is being generated. Since I am a n00b at MSIL, I would love to be able to ...
2
votes
3answers
137 views

Why does calling a DynamicMethod with an instance of my own class cause an exception?

I'm learning CIL by making my own functions at runtime with Reflection.Emit. I'm actually surprised how easy things have been up until now but I've hit something that I can't guess my way through and ...
0
votes
1answer
113 views

DynamicMethod NullReferenceException

Can anyone tell me what's wrong with my IL code here? IL_0000: nop IL_0001: ldarg.1 IL_0002: isinst MyXmlWriter IL_0007: stloc.0 IL_0008: ldloc.0 IL_0009: ldarg.2 IL_000a: ...