Creating your first C# Application
What we're going to do first is to create a very simple programme,
so that you can see what makes up a C# .NET project. By the end of this
chapter, you'll have learnt the following:
How to create new projects
What the Solution Explorer is
The various files that make up of a C# .NET project
How to save your work
How to run programmes
The importance of the Main statement
The simple programme we'll create is called a Console Application.
We won't be doing much else with this type of application, as this is
a book about Windows Applications. Off we go then!
Open the Visual C# Express software from your programs menu. When you
first open C# (pronounced C Sharp)
When you're looking at this piece of software for the first time, it
can seem hugely complex and daunting. The temptation is to think you're
never going to get to grips with somethin...