C# Basics

Now that you understand a little more about what C# can do, you will want to learn how to use it.
This chapter on the basics of C# will give you a good start in that direction by providing you with a basic knowledge of the fundamentals of C# programming, which we will build on in subsequent chapters. The main topics we will be covering are:
❑ Declaring variables
❑ Initialization and scope of variables
❑ Predefined C# data types
❑ Dictating the flow of execution within a C# program using loops and conditional
statements
❑ Enumerations
❑ Namespaces
❑ The Main() method
❑ Basic command line C# compiler options
❑ Using System.Console to perform console I/O
❑ Using documentation features in C# and Visual Studio .NET
❑ C# identifiers and keywords
❑ Recommended guidelines and conventions for good programming in C#.

By the end of this chapter you will know enough C# to write simple programs, though without using inheritance or other object-oriented features, which are covered in the following chapters.

Before We Start

As we have already mentioned, C# is an object-oriented language. As we get you up to speed in the fundamentals
of the C# language, we will be assuming that you have a good grasp of the concepts behind
object-oriented (OO) programming. In other words, we will expect you to understand what we mean
by classes, objects, interfaces, and inheritance. If you have programmed in C++ or Java before, you should
have a pretty good grounding in object-oriented programming (OOP). However, if you do not have a
background in OOP, there are plenty of good sources of information on this subject. You can start with
Appendix A, which presents a detailed introduction to OOP concepts and is posted at www.wrox.com.
We also recommend Beginning Visual C#, the revised edition of Beginning C# for .NET v1.0 (ISBN
0-7645-4382-2) which teaches both object-oriented programming and C# from scratch.
If you are an experienced developer in Visual Basic 6, C++, or Java, you should note that we will make
many comparisons between C#, C++, Java, and Visual Basic 6 as we walk you through the basics of C#.
However, you might prefer to learn C# initially by reading a comparison between C# and your selected
language. If so, we have also made available separate documents for download on the Wrox Press Web
site (www.wrox.com) that give introductions to C# from the point of view of each of those languages.

Our First C# Program
Let’s start in the traditional way by compiling and running the simplest possible C# program—a simple
class consisting of a console application that writes a message to the screen.

The Code
Type the following into a text editor (such as Notepad), and save it with a .cs extension (for example,
First.cs):
using System;
namespace Wrox.ProCSharp.Basics
{
class MyFirstCSharpClass
{
static void Main()
{
Console.WriteLine(“This isn’t at all like Java!”);
Console.ReadLine();
return;
}
}
}
The following chapters present a number of code samples. The most common technique for writing C#
programs is to use Visual Studio .NET to generate a basic project and add your own code to it. However,
since the aim of these early chapters is to teach the C# language, we are going to keep things simple and
avoid relying on Visual Studio .NET until Chapter 12. Instead, we will present the code as simple files
that you can type in using any text editor and compile from the command line.

Sursa
2007-07-14 20:04:00



Comenteaza





Ultimele 25 posturi adăugate

14:46:26Cursuri de engleză intensive online | Lecție demo EFNL —» Moldova Creștină
05:36:06Micile și marile bucurii ale lunii septembrie 2023 —» Sunt MAMĂ!
19:45:36Vrea să candideze independent la ambele funcții elective din sat —» Curaj.TV | Media alternativă
12:01:50Impresii de la Clubul de lectură „Tainele cărții” —» Biblioteca de Arte 'Tudor Arghezi'
04:58:47Poezia cu rădăcinile în inima cititorului! —» BiblioCity
20:44:32#MasaCritica #București, septembrie 2023 —» Curaj.TV | Media alternativă
20:41:30Junglă de ambrozie pe malul lacului Cernica —» Curaj.TV | Media alternativă
20:38:29Jandarmii încercau să ne împingă de pe alee —» Curaj.TV | Media alternativă
20:34:57Poluare cu nisip pe trotuar la Pallady —» Curaj.TV | Media alternativă
12:42:30CCR. Constituirea cauţiunilor prin scrisoare de garanţie. Constituționalitate —» Drept MD
12:32:04SUSPENDAREA CONTRACTULUI INDIVIDUAL DE MUNCĂ PE DURATĂ DETERMINATĂ – EFECT ALSUSPENDĂRII TERMENULUI SAU REGLEMENTARE DEFECTUOASĂ —» Drept MD
22:54:55Queer Québec and Feminist Studies —» turn up the silence
20:46:07Oleg Brega la Jurnalul unei emigrante —» Curaj.TV | Media alternativă
15:48:51Niște inși agresivi au chemat poliția pentru că mîncam în parc —» Curaj.TV | Media alternativă
15:40:46Poliția locală a oprit drujbele de Călărași care tăiau în IOR —» Curaj.TV | Media alternativă
18:48:33Even More New WordPress.com Themes for September 2023 —» Ileana Pîrgaru
14:50:04Aroganța polițienească e contagioasă —» Curaj.TV | Media alternativă
11:40:07Adio, Ion Druță! —» Argentina Gribincea's Blog
09:13:57O VIZITĂ LA ION DRUȚĂ. MOSCOVA —» Leo Butnaru
17:43:25Protest feminist la Ministerul Sănătății – Avortul e un drept! —» Curaj.TV | Media alternativă
13:40:36LOCUL DE VECI AL LUI ION DRUȚĂ —» Leo Butnaru
13:21:26Simpozionul National de Studii Culturale, ediția a V-a —» Biblioteca de Arte 'Tudor Arghezi'
09:41:42ION DRUȚĂ: 3.IX.1928 - 28.IX.2023 —» Leo Butnaru
18:13:08Influence the Future of WordPress by Taking the 2023 Annual Survey Today —» Misterioz
15:58:32Cică primarul neagă că hrănește muncitorii la grădiniță —» Curaj.TV | Media alternativă