You can apply directional attributes to parameters to indicate the direction that data is being passed. Both attributes can be applied to a single parameter, but doing so increases the overhead associated with a call.
Attribute | Usage |
---|---|
in | The parameter is being passed from the caller to the callee. |
out | The parameter is being passed from the callee to the caller. |