ECMA-334: 12.1.4 Value parameters
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| C# Language Specification |
| © 2006 ECMA International |
12.1.4 Value parameters
A parameter declared without a ref or out modifier is a value parameter.
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 (except when the value parameter is captured by an anonymous method (§14.5.15.3.1) or the function member body is an iterator block (§26)).
For the purpose of definite assignment checking, a value parameter is considered initially assigned.