I would like to make a small correction to Joel's answer above.
C# does not allow every expression all expressions to be used as a statementstatements. In particular, only assignment, call, increment, and decrement expressions may be used as statements.
For example, the C# compiler will flag the following code as a syntax error:
1 + 2;
