About the Tutorial


Creating Hello World Program



Yüklə 1,07 Mb.
Pdf görüntüsü
səhifə23/29
tarix13.09.2023
ölçüsü1,07 Mb.
#143059
1   ...   19   20   21   22   23   24   25   26   ...   29
csharp tutorial

Creating Hello World Program 
A C# program consists of the following parts: 

Namespace declaration 

A class 

Class methods 

Class attributes 

A Main method 

Statements and Expressions 

Comments 
Let us look at a simple code that prints the words "Hello World": 
using System; 
namespace HelloWorldApplication 

class HelloWorld 

static void Main(string[] args) 

/* my first program in C# */ 
Console.WriteLine("Hello World"); 
Console.ReadKey(); 






C# 
When this code is compiled and executed, it produces the following result: 
Hello World 
Let us look at the various parts of the given program: 

The first line of the program 
using
System;
- the 
using
keyword is used to 
include the 
System
namespace in the program. A program generally has 
multiple
using
statements. 

The next line has the
namespace
declaration. A
namespace
is a collection of 
classes. The
HelloWorldApplication
namespace contains the class
HelloWorld


The next line has a 
class
declaration, the class 
HelloWorld
contains the data 
and method definitions that your program uses. Classes generally contain 
multiple methods. Methods define the behavior of the class. However, the 
HelloWorld
class has only one method
Main


The next line defines the 
Main
method, which is the 
entry
point
for all C# 
programs. The

Yüklə 1,07 Mb.

Dostları ilə paylaş:
1   ...   19   20   21   22   23   24   25   26   ...   29




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin