8.9.4 The return statement
The return statement returns control to the caller of the function member in which the return statement appears.
- return-statement:
- return expressionopt ;
A return statement with no expression can be used only in a function member that does not compute a value, that is, a method with the return type void, the set accessor of a property or indexer, the add and remove accessors of an event, an instance constructor, a static constructor, or a destructor.
A return statement with an expression can only be used in a function member that computes a value, that is, a method with a non-void return type, the get accessor of a property or indexer, or a user-defined operator. An implicit conversion (Section 6.1) must exist from the type of the expression to the return type of the containing function member.
It is a compile-time error for a return statement to appear in a finally block (Section 8.10).
A return statement is executed as follows:
- If the
returnstatement specifies an expression, the expression is evaluated and the resulting value is converted to the return type of the containing function member by an implicit conversion. The result of the conversion becomes the value returned to the caller. - If the
returnstatement is enclosed by one or moretryblocks with associatedfinallyblocks, control is initially transferred to thefinallyblock of the innermosttrystatement. When and if control reaches the end point of afinallyblock, control is transferred to thefinallyblock of the next enclosingtrystatement. This process is repeated until thefinallyblocks of all enclosingtrystatements have been executed. - Control is returned to the caller of the containing function member.
Because a return statement unconditionally transfers control elsewhere, the end point of a return statement is never reachable.