Tagged Questions
The System.Reflection.Emit namespace contains classes that allow a compiler or tool to emit metadata and Microsoft intermediate language (MSIL) and optionally generate a PE file on disk.
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 ...
30
votes
1answer
475 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:
...
20
votes
6answers
612 views
Creating method dynamically, and executing it
Background:
I want to define few static methods in C# , and generate IL code as byte array, from one of these methods, selected at runtime (on client), and send the byte array over network to another ...
16
votes
4answers
2k views
13
votes
2answers
663 views
Java Equivalent of Reflection.Emit
As far as I can tell, Java has no such equivalent of C#'s Reflection.Emit stuff. Are there any additional libraries for Java that provide similar functionality? What are the differences (to reflection ...
12
votes
1answer
173 views
Why am I getting this exception when emitting classes that reference each other via value-type generics?
This code snippet is a simplified extract of my class-generation code, which creates two classes that reference each other as arguments in a generic type:
namespace Sandbox
{
using System;
...
12
votes
3answers
1k views
Reflection.Emit vs CodeDOM
What are some pros/cons for using the Reflection.Emit library versus CodeDOM for dynamically generating code at runtime?
I am trying to generate some (relatively complicated) dynamic classes in a ...
12
votes
2answers
679 views
How do I Emit a System.Linq.Expression?
I've got some code that generates various Func<> delegates using System.Linq.Expressions and Expression.Lambda<Func<>>.Compile() etc. I would like to be able to serialize the ...
10
votes
11answers
908 views
Real world uses of Reflection.Emit
In all the books I've read on reflection they often say that there aren't many cases where you want to generate IL on the fly, but they don't give any examples of where it does make sense.
After ...
8
votes
1answer
216 views
Using Reflection.Emit to emit a “using (x) { … }” block?
I'm trying to use Reflection.Emit in C# to emit a using (x) { ... } block.
At the point I am in code, I need to take the current top of the stack, which is an object that implements IDisposable, ...
8
votes
4answers
373 views
Reflection.Emit - access topmost-but-one item from stack
Is there a way in .NET, using Reflection.Emit, to access the topmost-but-one item from the stack? So if A is topmost, and B next - I want to process B then A. It would be fine to duplicate B above A ...
7
votes
8answers
3k views
Modifying Existing .NET Assemblies
Is there a way to modify existing .NET assemblies without resorting to 3rd party tools? I know that PostSharp makes this possible but I find it incredibly wasteful that the developler of PostSharp ...
6
votes
4answers
1k views
Replacing instructions in a method's MethodBody
(First of all, this is a very lengthy post, but don't worry: I've already implemented all of it, I'm just asking your opinion, or possible alternatives.)
I'm having trouble implementing the ...
6
votes
3answers
497 views
Is there kind of runtime C++ assembler library around?
For my small hobby project I need to emit machine code from C++ program in runtime. I have base address 0xDEADBEEF and want to write something like this:
Assembler a((void*)0xDEADBEEF);
a.Emit() ...
6
votes
1answer
2k views
How to emit explicit interface implementation using reflection.emit?
Observe the following simple source code:
using System;
using System.Linq.Expressions;
using System.Reflection;
using System.Reflection.Emit;
namespace A
{
public static class Program
{
...
6
votes
1answer
518 views
Is it possible to invoke internal method from a dynamic method in .NET?
I am trying to invoke an internal method from a dynamically generated one. The il code is simple: ldarg_0, callvirt, ret.
Executing the method fails with TypeLoadException saying it cannot load the ...
6
votes
2answers
1k views
Alternatives to Reflection.Emit for the Compact Framework
It seems that .NET CF is missing the very useful Reflection.Emit.
So far, I found this library as an alternative: http://www.codeplex.com/EmitCF.
However it seems to be an abandoned early version, ...
6
votes
2answers
1k views
Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?
I am trying to add Silverlight support to my favorite programming langauge Nemerle.
Nemerle , on compilation procedure, loads all types via reflection mainly in 2 steps
1-) Uses Assembly.LoadFrom ...
5
votes
1answer
241 views
How can in inject a literal expression using Reflection.Emit?
I am working on a project to evaluate tokenized user-defined expressions of varying complexity, using C# as the scripting language.
I have a working model using CodeDOM and reflection to generate an ...
5
votes
1answer
77 views
How can I define multiple types with the same name and different type parameters using Reflection Emit?
How can I generate types like these using the System.Reflection.Emit libraries:
public class Test<T> {}
public class Test<T1, T2> {}
When I call ModuleBuilder.DefineType(string) with ...
5
votes
5answers
3k views
Reflection.Emit better than GetValue & SetValue :S
I've been told to use Reflection.Emit instead of PropertyInfo.GetValue / SetValue because it is faster this way.
But I don't really know what stuff from Reflection.Emit and how to use it to ...
5
votes
4answers
5k views
How do I add attributes to a method at runtime?
We're using Microsoft.Practices.CompositeUI.EventBroker to handle event subscription and publication in our application. The way that works is that you add an attribute to your event, specifying a ...
5
votes
2answers
807 views
Is it possible to indirectly load a value type on the stack
In Microsoft IL, to call a method on a value type you need an indirect reference. Lets say we have an ILGenerator named "il" and that currently we have a Nullable on top of the stack, if we want to ...
4
votes
2answers
72 views
Is there a way to “reflect” ILGenerator.Emit commands from IL code?
I am trying to dynamically emit some generic method that I’ve prototyped in C#.
Based on IL code presented in ILDASM, is there a way to generate adequate sequence of ILGenerator.Emit() commands that ...
4
votes
1answer
266 views
Generating a proxy via Reflection.Emit only works when started with Debugging
A task at university was to implement a simple proxy generator / interceptor mechanism using Reflection.Emit.
I came up with the following program.
It seems to work just fine inside Visual Studio in ...
4
votes
4answers
203 views
Can 'this' argument of an instance method be untyped (i.e. System.Object)?
I'm using System.Reflection.Emit's TypeBuilder to emit a bunch of custom .NET classes with instance methods. For example:
public class EmittedClass
{
public bool TryGetName(out string value)
...
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)
{
...
4
votes
1answer
83 views
How to tell whether a class/method is accessible using reflection?
I use a Dynamic Assembly to create derived classes at run time. How can I tell, using reflection, whether the base class and individual methods in the base class can be used/called from within the ...
4
votes
1answer
191 views
IL short-form instructions aren't short?
I was looking at the IL code of a valid method with Reflector and I've run into this:
L_00a5: leave.s L_0103
Instructions with the suffix .s are supposed to take an int8 operand, and sure enough ...
4
votes
3answers
131 views
Where can I find information on the Get, Set and Address methods for multidimensional System.Array instances in .NET?
System.Array serves as the base class for all arrays in the Common Language Runtime (CLR). According to this article:
For each concrete array type, [the] runtime adds three special methods: ...
4
votes
2answers
369 views
Using Reflection.Emit to match existing constructor
First, here is the C# code and the disassembled IL:
public class Program<T>
{
private List<T> _items;
public Program(T x, [Microsoft.Scripting.ParamDictionary] ...
4
votes
4answers
1k views
Reflect.Emit Dynamic Type Memory Blowup
Using C# 3.5 I am trying to generate dynamic types at runtime using reflection emit. I used the Dynamic Query Library sample from Microsoft to create a class generator. Everything works, my problem is ...
4
votes
4answers
904 views
Using a Delegate to call a constructor
I found this but tried to use it and failed.
How can i create an object using reflections and make it fast by putting it in a delegate?
DynamicMethod dm = new DynamicMethod("MyCtor", t, new ...
4
votes
3answers
2k views
Creating a class for an interface at runtime, in C#
I'm looking at taking a set of objects, let's say there's 3 objects alive at the moment, which all implement a common interface, and then wrap those objects inside a fourth object, also implementing ...
4
votes
5answers
3k views
Dynamic C#.NET Webservice
I am using a class in a C# ASP.NET project to allow a script written in some random scripting language to expose webservice methods dynamically - in other words, the script should be able to expose a ...
4
votes
2answers
475 views
Is it possible to write an assembly which dynamically generates a new class and patches itself with the new class?
Is it possible to write an assembly which dynamically generates/emits a new class and patches itself to include the new class?
How?
4
votes
2answers
651 views
Why does getting the mocked instance created with Moq throw a System.BadImageFormatException?
This question may be related to another question and it certainly results with a System.BadImageFormatException. Maybe it's the same thing but exposed differently?
I have the following the code:
...
4
votes
3answers
903 views
What's the MSIL to call a base class's event handler?
I have a class called EventConsumer which defines an event EventConsumed and a method OnEventConsumed as follows:
public event EventHandler EventConsumed;
public virtual void OnEventConsumed(object ...
3
votes
1answer
96 views
Reflection.Emit create object with parameters
I'm creating a dynamic function to create an object at runtime given an object[] of constructor params. I keep getting the generic exception 'Operation could destablise the runtime' and I can't see ...
3
votes
3answers
137 views
What is the most interesting and promising approach to implement a compiler in C#?
I am just in the beginning of my graduation project that is supposed to last for 6 months.
The goal of the project is to implement a .Net-compiler for one scripting language. I had the Compiler ...
3
votes
1answer
101 views
Using reflection to find DynamicMethods
I'd like to somehow find all DynamicMethods in my current context, consider that I have the following method and delegate:
public delegate double DivideInvoker(int a, int b);
public DivideInvoker ...
3
votes
1answer
135 views
Generating IL for 2D Arrays
I want to generate IL for the 2D array construction, using System.Reflection.Emit namespace.
My C# code is
Array 2dArr = Array.CreateInstance(typeof(int),100,100);
Using ildasm, I realized that ...
3
votes
2answers
437 views
C# cannot dynamically generate this simple event handler
I'm trying to learn a bit about dynamically generating event handlers and I'm having difficulty trying to recreate this simple situation:
public delegate void SomethingHappenedEventHandler(object ...
3
votes
3answers
493 views
MethodBuilder.CreateMethodBody() problem in Dynamic Type creation
For an experiment, i am trying to read the method body (using GetILAsByteArray()) from source type and adding it to the new Type (Using CreateMethodBody()).
My source class is simply this
public ...
3
votes
3answers
437 views
Actual Performance of Fields vs. Properties
I'm doing some post-build CIL weaving that adds CIL to all methods in an assembly (in other words tons of methods). Each method checks if a specific value is null. Example (C# Reflector'd version of ...
3
votes
2answers
508 views
Can't access CodeBase from a dynamically generated assembly
I'm trying to create an assembly dynamically in .Net. I can't seem to figure out how to get the CodeBase property to return a value, however. Here's an example:
var assemblyName = new AssemblyName
...
3
votes
1answer
680 views
NHibernate / Fluent NHibernate Dynamic Column Mapping
I have a table that, some of its columns are unknown at compile time. Such columns could either be of an integer value, or some Enum value. There is a table that holds all the names of such dynamic ...
3
votes
3answers
291 views
How can I emit a call to a delegate whose type is unfinished at the time of the emit?
I'm having trouble emitting a call to a delegate whose type is unfinished at the time of the emit. I'll elaborate: I've declared the following delegate type:
// Delegate type. The 'firstArgument' ...
3
votes
3answers
672 views
Using Reflection.Emit to copy a custom attribute to another method
I am trying to generate a new set of wcf interfaces based on existing interfaces.
I am using the Reflection.Emit namespace to accomplish this. My problem is how to copy the old custom attributes from ...
3
votes
1answer
435 views
How can I generate Virtual Properties with the AssemblyBuilder in C# 4.0?
I'm currently working on creating an Assembly with virtual properties. The examples on MSDN are only creating normal properties. How do I create a class inside an assembly which has virtual ...