Tagged Questions
The dynamicmethod tag has no wiki summary.
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 ...
7
votes
1answer
287 views
How to use SuperObject to invoke methods that uses an Object as parameter in Delphi?
We can use the SuperObject library to invoke methods of a certain object by its name and giving its parameters as a json string using the SOInvoker method like in this answer
I'd like to know how do ...
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
389 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
100 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
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 ...
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
1answer
145 views
VerificationException when using DynamicMethod in Silverlight
I want to call certain methods via delegates but am getting VerificationException. I am using following code:
internal delegate void Delegete_add_Startup(object o, StartupEventHandler s);
...
2
votes
6answers
279 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
2answers
573 views
How can I make my DynamicMethod security-critical?
I have a rather convoluted scenario where I want to create a DynamicMethod that's attached to a class in an in-memory AssemblyBuilder. The dynamic method calls a method "GetReplacement" in a (regular) ...
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
821 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 ...
2
votes
3answers
634 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 mapping file.
My Question ...
1
vote
2answers
38 views
How do I dynamically invoke methods in Groovy?
At runtime I'm grabbing a list of method names on a class, and I want to invoke these methods. I understand how to get the first part done from here:
...
1
vote
0answers
113 views
Catch events by dynamically adding Handler using Code Generation
I need to hook up all events in an application and trace all information (raising, arguments, etc.).
I found this at Stackoverflow:
...
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
0answers
44 views
DynamicMethod in partial trust
I am trying to use DynamicMethod in medium trust.
I found this link which suggested they found a workaround, but his technique doesn't work. I get FileIOPermission errors when creating the appdomain.
...
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
2answers
136 views
How to call a 'normal' method through ILGenerator.Emit*?
Is it possible for a DynamicMethod to call (via ILGenerator.EmitCall -- or similar -- for instance) a 'normal' method, e.g. Private Sub BlahBlah(ByVal obj as Object)?
Thanks in advance
0
votes
0answers
84 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
37 views
How to pass value when subscribing to event and obtain it when the event is triggered (DynamicMethod usage problems)
The task is to create event handlers in runtime. I need the one method to be called with different parameter value for different events. The events and their number are only known in runtime. So I'm ...
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: ...