show/hide this revision's text 3 deleted 2 characters in body

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;

show/hide this revision's text 2 deleted 6 characters in body

I would like to make a small correction to Joel's answer above.

C# does not allow anyevery expression to be used as a statement. 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;

show/hide this revision's text 1

I would like to make a small correction to Joel's answer above.

C# does not allow any expression to be used as a statement. 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;