Tagged Questions

7
votes
1answer
283 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 ...
4
votes
1answer
97 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 ...
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
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
818 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
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
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
305 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"); } } ...