Tagged Questions
The reflection-emit tag has no wiki summary.
2
votes
1answer
92 views
using dynamic type as argument to it's own basetype
I'm trying to write some code generating a type at runtime. I have an interface I need to implement but the constraint is causing me some difficulties.
As has been noted in the comments, yes the ...
2
votes
2answers
861 views
IL Emit for invoking a delegate instance?
Basically, I'm accepting an event name as a string, to get the EventInfo. Then, I'm discovering the event handler type and event argument type using reflection, creating a new delegate of that type ...
0
votes
1answer
41 views
The value “CitiesDomain.Cities” is not of type “CitiesDomain.Cities” and cannot be used in this generic collection. Parameter name: value
I need some assistance with this error message that I am getting. Basically, I am developing a dynamic reporting class library using C# .NET and NHibernate.
The report itself will be implemented ...
0
votes
2answers
872 views
How to create a method at runtime using Reflection.emit
I'm creating an object at runtime using reflection emit. I successfully created the fields, properties and get set methods.
Now I want to add a method. For the sake of simplicity let's say the method ...
0
votes
1answer
309 views
Call a dynamically generated method on a ILGenerator on the same type
Normally, when I want to call a dynamic method in another ILGenerator object that is writing a method on the same type I do the following :
generator.Emit(OpCodes.Ldarg_0); // reference to the ...