Tagged Questions

4
votes
1answer
110 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 ...
3
votes
2answers
107 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
1answer
156 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
2answers
603 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
139 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
856 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
361 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
638 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 ...
0
votes
2answers
153 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
1answer
38 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 ...