+ All Categories
Home > Education > Introduction to c sharp

Introduction to c sharp

Date post: 16-Aug-2015
Category:
Upload: naruemon-soonthong
View: 1,768 times
Download: 3 times
Share this document with a friend
Popular Tags:
17
Transcript

Introduction to C# Programming

Copy for Education by Naruemon Soonthong

Thank you :) Davide Vitelaru

New Project…

Select the Visual C# Console Application

Screen of Program

You created your project, you will see this:

I know It look scary,but it’s not that

complicatedYou only have to worry about this section:

At this point, your applicationwon‘t do anything. To start youapplication. Press F5 You will see a black windows appearing and closing immediately.

Because it doesExactly what youTold it to do:Nothing.

Let’s “tell” itto open and wait for a keystroke to close.

Write between the braces of

Console.ReadKey();

Now, press F5 to run your application

You will end up with a black windowawaiting you to press any key so it closes.

Let’s make it even more fun,make your code look like this:

AgainPress F5

This time the application will display“Hello World!”

And than it will wait for you to press a key.

If you get an error!

Make sure you typedEverything correctly.

Also, don’t forget The semicolons at the end.

They are very importantand annoying for beginningthat keep forgetting them.

http://krufern32101.blogspot.com


Recommended