Tagged Questions
1
vote
1answer
525 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 ...