Tagged Questions
The system.reflection.emit tag has no wiki summary.
7
votes
3answers
560 views
How do I emit code and inject it into a loaded assembly?
I've built some Types dynamically using System.CodeDom.CodeCompileUnit, want to compile those into IL code in memory, and inject that IL code into an assembly loaded in memory - there is no need to ...
5
votes
2answers
599 views
Feeding an object literal to ILGenerator
Food obj = ...;
ILGenerator gen = (...).GetILGenerator();
gen.Emit( ?? obj ?? ); // replace this
gen.Emit(OpCodes.Call, typeof(Person).GetMethod("Eat"));
It's apparently not possible to cleanly ...
3
votes
2answers
213 views
ILGenerator: Load created method
I am using System.Reflection.Emit, and at some point I want to create a delegate from a MethodBuilder:
MethodBuilder fooBuilder = createFooMethodBuilder();
ILGenerator ilGenerator = ...
Type ...
2
votes
2answers
278 views
ILASM for Compact Framework?
I'm working with Linq expression trees (from the db4o/Mainsoft/Mono port) on the Compact Framework. Since System.Reflection.Emit doesn't exist, I can't compile my LambdaExpressions into delegates, ...
1
vote
1answer
310 views
Help with InvalidProgramException (Invalid IL Code?)
I'm getting a weird bug in an assembly exported with System.Reflection.Emit with mono.
When attempting to run my assembly, I get an InvalidProgramException: Invalid IL code.
monodis gives me this CIL ...
1
vote
1answer
67 views
Check if Type is a TypeBuilder
How can I check if a Type object is a TypeBuilderInstantiation?
Basically, I need a method off the Type.
If it's a TypeBuilderInstantiation, I need to call TypeBuilder.GetMethod(...), not just ...
1
vote
2answers
257 views
How to add the .entrypoint directive to a method (dynamic assembly)
I want to create a simple application using the classes in System.Reflection.Emit. How can I add the enrypoint directive to the Main method?
AssemblyName aName = new AssemblyName("Hello");
...
0
votes
2answers
50 views
emit IL for basic arithmetic ops
I'm fairly new to C#, and have recently learned that it's possible to emit IL to implement a simple evaluation stack:
stack [ B C * A + ] ==> push B, push C, DO MULT, push A, DO ADD, POP return ...
0
votes
1answer
98 views
emit Opcodes set field to a value
I am trying dynamic create a proxy, so im pleying with Emit.
So when I set my field with emit I also need to set a isDirty field boolan to true.
How can I do that ?
Property Customer
{
set
{
...