Results 1 to 10 of 11
Threaded View
-
28th Jun 2010, 05:59 PM #1OPMember
Write your first C# program!
NOTE: THIS TUTORIAL IS KINDA CONTINUED FROM MY PREVIOUS TUT. Click here to view my previous tut.
As usual we start off with the simplest program - Hello, World!
Code:public class Hello { public static void Main(string[] args) { System.Console.WriteLine("Hello, World! \n"); } }
Console is a class that belongs to the System namespace. A namespace is a collection of classes. The System namespace contains the method WriteLine(), which displays the enclosed text on the screen. The Console class has other methods, which are used for various input/output operations. The character (.) is used to access the function, WriteLine(), which is coded in the Console class of the System namespace.
The preceding line can also be written as Console.WriteLine() if the statement using System is included as the first line of the code.
The Escape Characters
To display special characters such as the New line character or the backspace character, you need to use escape characters.
I have listed the escape characters used in C# :
\' - Single quotation mark
\" - Double quotation mark
\\ - Backslash
\0 - NULL
\a - Alert
\b - Backspace
\f - Form feed
\n - New line
\r - Carriage return
\t - Horizontal tab
\v - Vertical tabiFlames Reviewed by iFlames on . Write your first C# program! NOTE: THIS TUTORIAL IS KINDA CONTINUED FROM MY PREVIOUS TUT. Click here to view my previous tut. As usual we start off with the simplest program - Hello, World! public class Hello { public static void Main(string args) { System.Console.WriteLine("Hello, World! \n"); } Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Write For Us
By Kw3rLn in forum Webmaster DiscussionReplies: 0Last Post: 12th May 2012, 04:55 PM -
anyone can write this c++ code.
By iamuser_2007 in forum Web Development AreaReplies: 3Last Post: 21st May 2011, 03:14 PM -
Not Selected for The Program (MEPI- Student Leaders Program)!!
By DoctorX in forum General DiscussionReplies: 0Last Post: 9th Feb 2011, 04:29 PM -
Need some invoice program source code/or program only
By Nikolasr in forum Webmaster DiscussionReplies: 2Last Post: 1st Feb 2010, 10:55 AM -
how do i write?
By lig}{tning in forum vBulletinReplies: 10Last Post: 18th Aug 2009, 08:45 AM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...