Marcel Müller
unread,Apr 16, 2013, 8:04:17 AM4/16/13You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Why does
public delegate void ActionOut<out T>(out T arg1);
not work?
From my understanding arg1 is only passed from the callee to the
caller, so it should be safe, if the delegate is invoked with a base
class of T.
Marcel