0
votes
3answers
114 views
Convert C# code
Hi,
I need to simulate in C# code (with ilGenerator.Emit) the following function
public void AssignAttribute(ref ValueHolder output, Assignment assignment) {
ResultAttribute attribute = null;
…
2
votes
1answer
271 views
Dynamic object property populator (without reflection)
I want to populate an object's properties without using reflection in a manner similar to the DynamicBuilder on CodeProject. The CodeProject example is tailored for populating entities using a …
0
votes
1answer
105 views
Are there any gotchas or good reasons not to use autosproc for stored procedure calls?
I've implemented a data access layer that populates generic entities from a datareader using a variation of the third monkey approach …
0
votes
2answers
766 views
Dynamic event generation in C# using DynamicMethod and ILGenerator
I need to generate an event handler based on an EventInfo object in runtime and call a method within that event handler. Something like the following:
public void RegisterAction(ActionData …
3
votes
3answers
445 views
Is there a good wrapper around ILGenerator ?
I'm using System.Reflection.Emit for a while now, and find it (who don't?) as painful as bug prone.
Do you know if there is a good wrapper around the IL Generator, something that I can rely on to …
