M
Marcel Müller
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
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