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 ...
6
votes
5answers
445 views

How can I combine several Expressions into a fast method?

Suppose I have the following expressions: Expression<Action<T, StringBuilder>> expr1 = (t, sb) => sb.Append(t.Name); Expression<Action<T, StringBuilder>> expr2 = (t, sb) ...
5
votes
1answer
51 views

ILGenerator: How to use unmanaged pointers? (I get a VerificationException)

I'm making a sound synthesis program in wich the user can create his own sounds doing node-base compositing, creating oscillators, filters, etc... The program compiles the nodes onto an intermediary ...
5
votes
2answers
388 views

How do I get an IL bytearray from a DynamicMethod?

As a bit of a novelty, I'm trying to see how different the IL from light weight code generated at runtime looks vs code generated by the VS compiler, as I noticed that VS code tends to run with a ...
4
votes
1answer
99 views

Dynamic Assemblies and Methods

I've programmed .NET and C# for years now, but have only recently encountered the DynamicMethod type along with the concept of a Dynamic Assembly within the context of reflection. They seem to always ...
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
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
241 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
310 views

Dynamic IL method causes “Operation could destabilize the runtime”

System.Security.VerificationException: Operation could destabilize the runtime. at Connance.CommunicatorApi.ReportApiClient.AcknowledgeRecallsAsyncDynamicHandler(Object , ...
3
votes
1answer
122 views

c# + Using dynamicmethod with an attribute

[CustomAttribute] public bool IsGreen() { return true; } How could one write the above using a DynamicMethod in c#? UPDATE; per casperOne you cannot do this with a custom attribute. But what ...
3
votes
2answers
794 views

DynamicMethod for ConstructorInfo.Invoke, what do I need to consider?

My question is this: If I'm going to build a DynamicMethod object, corresponding to a ConstructorInfo.Invoke call, what types of IL do I need to implement in order to cope with all (or most) types ...
2
votes
1answer
136 views

Exception from DynamicMethod.CreateDelegate, almost identical MSDN example

When i call CreateDelegate(delegateType) i get a System.ArgumentException, which according to MSDN is because the delegateType has the wrong number of parameters or the wrong parameter types. The ...
2
votes
6answers
278 views

Calling C# methods dynamically based on data from database

My boss has asked me to look into a calculation engine. Effectively, the user will have a table of data that can have calculations be performed on. They will also be able to build their own ...
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 ...
2
votes
2answers
820 views

Practical example of Dynamic method?

I want to learn dynamic method and its practical example using c#. Is there any relation between dynamic method and Reflection? Please help me.
2
votes
1answer
356 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 generated method. I ...
1
vote
1answer
505 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 the a argument to ...
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
36 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
307 views

C# calling a public non-static method using reflection without instantiating its class

Is-it possible in C# to call a method (non-static) without instantiating its class e.g : public class MyClass { public void MyMethod() { Console.WriteLine("method called"); } } ...
0
votes
0answers
83 views

Resolving the tokens found in the IL from a dynamic method

Thanks to Hans Passant answering my question here: How do I get an IL bytearray from a DynamicMethod? I was able to get up and running. I am now trying to resolve the Metadata tokens found in the IL ...
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 ...
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: ...