No, not with the builtin delegates. out
and ref
are special qualifiers and the delegate has to be setup with them explicitly since they are completely different calling styles.
However, if you defined your own delegate, you can do this:
delegate void OutAction(out T1 a, out T2 b);