dlr bug
[mcs.git] / docs / ecma334 / 12.1.4.xml
blobea3900d16f54ff96d0606a2cfaabeec694a06745
1 <?xml version="1.0"?>
2 <clause number="12.1.4" title="Value parameters">
3   <paragraph>A parameter declared without a ref or out modifier is a value parameter. </paragraph>
4   <paragraph>A value parameter comes into existence upon invocation of the function member (method, instance constructor, accessor, or operator) to which the parameter belongs, and is initialized with the value of the argument given in the invocation. A value parameter ceases to exist upon return of the function member. </paragraph>
5   <paragraph>For the purpose of definite assignment checking, a value parameter is considered initially assigned. </paragraph>
6 </clause>