October 2008
Beginner to intermediate
680 pages
16h 48m
English
One of the simplest of all C# applications, the classic "Hello" program, is shown in Figure 1-1.
Let's go over the key elements of our simple program.
The first line of the program is required for our program to compile and run properly, by providing the compiler with knowledge of the types in the System namespace, which is a logical grouping of predefined C# programming elements (in the case of C#, part of the FCL mentioned earlier):
using System;
We'll defer a detailed explanation of namespaces until Chapter 13; for now, simply ...
Read now
Unlock full access