3.4 Whitespace
In the C# language, spaces, tabs, and newlines are considered to be
"whitespace"
(so named because you see only the white of the underlying
"page"). Extra whitespace is
generally ignored in C# statements. You can write:
myVariable = 5;
or:
myVariable = 5;
and the compiler will treat the two statements as identical.
The exception to this rule is that whitespace within strings is not
ignored. If you write:
Console.WriteLine("Hello World")
each space between "Hello" and
"World" is treated as another
character in the string.
Most of the time the use of whitespace is intuitive. The key is to
use whitespace to make the program more readable to the programmer;
the compiler is indifferent.
However, there are instances in which the use of whitespace is quite
significant. Although the expression:
int x = 5;
is the same as:
int x=5;
it is not the same as:
intx=5;
The compiler knows that the whitespace on either side of the
assignment operator is extra, but the whitespace between the type
declaration int and the variable name
x is not extra, and is
required. This is not surprising: the whitespace allows the compiler
to parse the keyword int rather than some unknown
term intx. You are free to add as much or as
little whitespace between int and
x as you care to, but there must be at least one
whitespace character (typically a space or tab).
|
Visual
Basic programmers take note: In C# the
end-of-line has no special significance; statements are ended with
semicolons, not newline characters. There is no line-continuation
character because none is needed.
|
|
|