5,401,186 members and growing! (17,250 online)
Email Password   helpLost your password?
Languages » C# » Beginners     Beginner

Traditional "Hello World" Program Using Different Approaches. PART-I

By nemesh

Very basic understanding of the first C# program.
C#, .NET, NT4, Win2K, Windows, Visual Studio, Dev

Posted: 25 Sep 2001
Updated: 30 Sep 2001
Views: 80,050
Bookmarked: 9 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
56 votes for this Article.
Popularity: 4.90 Rating: 2.80 out of 5
4 votes, 26.7%
1
1 vote, 6.7%
2
3 votes, 20.0%
3
3 votes, 20.0%
4
4 votes, 26.7%
5

Introduction

You may think that the title of this article looks something odd and too lengthy. So, before moving on to the point, let me first explain to you the title.

By "Traditional Hello World", I mean that when we try to learn a new language, as the tradition goes on, we always introduce the language with a "Hello World" program. This is just a simple program which displays "Hello World" on the console screen. (PART-I)

By "Using Different Approaches", I mean that I would explain the "Hello World" program using various methods. So, the reader gets a basic and clear understanding of Object Oriented Programming using C#. (PART-II)

So folks, without breaking the tradition, let's move on to our program:

/*1*/      using System;
/*2*/         public class world
/*3*/            {
/*4*/            public static void Main()
/*5*/               {
/*6*/                 Console.WriteLine("Hello World");
/*7*/                }
/*8*/             }

You can type this code into Notepad or any of your favorite editor and save the file as helloworld.cs (you can save it with any name but the extension should be .cs). After saving the file, go to console screen (i.e., the black colored DOS prompt Window) and type csc helloworld.cs and press Enter.

The program would successfully compile, provided that there is .NET platform installed on your PC and the program is typed correctly without any mistakes.

This would generate a file as helloworld.exe which when run will give you "Hello World" on the screen. Let us now examine the different parts of our Helloworld program:

LINE: 1

using System;
  • using: Using is very similar in concept to Java's import keyword. Also, if you love C/C++ programming, then you may assume it as include keyword.
  • System: System is the most fundamental class in which every other class is defined.
  • Semicolon (;) is used to end the statement.

LINE: 2

public class world
  • public: This keyword denotes that the class is visible to everyone.
  • class: This class as the name suggests denotes that this is a class.
  • world: It is the name of the class (user defined, can be any name).

LINE: 3

{

Starting curly braces for class world.

LINE: 4

public static void Main()

This is the main entry point of this program.

  • public: I think there is no need to explain this access modifier again.
  • static: static indicates that the method is a class method and can be called without making an instance of the class first.
  • void: This is the return type of the Main method. It means that no value is returned for this method. This return type denotes the error level.
  • Main(): It is the name of the 'main method' which is Main (Main with capital M).

LINE: 5

{

Starting curly brace for method Main().

LINE: 6

Console.WriteLine("Hello World")

At last, I am on the actual line of the code which displays the traditional holy word (FOR PYSCHOs) "Hello World".

  • Console: Here Console is a class just like world in this example, and
  • WriteLine: It is a method of class Console and need not be initialized. I.e., it is a static method.

And "HelloWorld" is the string that we pass in the WriteLine method, so that it would be printed on the Console screen, i.e., the black colored DOS prompt.

LINE: 7

}

Closing curly brace for method Main().

LINE: 8

}

Closing curly brace for class world.

So folks, if you want to thank me, then what would you do? Let me guess. You would change line 6 as:

Console.WriteLine("Thank You Nemesh");

I have also uploaded the second part of this article Traditional Hello World Program using different approaches. PART -II.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

nemesh



Occupation: Web Developer
Location: India India

Other popular C# articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 13 of 13 (Total in Forum: 13) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralThank you. LOW COST DEVELOPMENT IN INDIA. www.xtremeheights.commembernemesh19:56 4 Nov '04  
GeneralRe: Thank you. LOW COST DEVELOPMENT IN INDIA. www.xtremeheights.com [modified]memberggokul20:48 3 Apr '07  
GeneralNew to programming!!!sussAnonymous16:26 28 Aug '02  
GeneralRe: New to programming!!!memberRay Cassick18:23 28 Aug '02  
GeneralToo goodmembermani iyer18:27 4 Feb '02  
Generalnice work :-)memberNish [BusterBoy]18:12 11 Oct '01  
GeneralHello Worldmemberaddicted_to_cpp13:50 7 Oct '01  
GeneralRe: Hello WorldmemberNemesh Singh23:50 7 Oct '01  
GeneralGoing back to schoolmemberAnnonymous10:55 27 Sep '01  
GeneralRe: Going back to schoolmemberAlbert Einstein11:12 27 Sep '01  
GeneralRe: Going back to schoolmemberNemesh Singh2:03 28 Sep '01  
GeneralRe: Going back to schoolmemberUwe Keim3:30 1 Oct '01  
GeneralRe: Going back to schoolmemberNorm Almond3:55 1 Oct '01  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 30 Sep 2001
Editor: Smitha Vijayan
Copyright 2001 by nemesh
Everything else Copyright © CodeProject, 1999-2008
Web20 | Advertise on the Code Project