Common Type System—Argument Passing Style
Argument Passing Style
The way that values are passed as arguments to a method is often a point of confusion. The CTS uses two primary styles: pass-by-value and pass-by-reference, also known by their shorthand forms byval and byref. The distinction can be tricky to understand, especially with the differences between value and reference types.
|

