Labels

Programming with C# - Lesson 02

 Link to : Programming with C# - Lesson 01

Before to write your first C# program below points are worth to note

  1. C# is Case Sensitive.
  2. All statements and Expressions must end with a semicolon ( ; ).
  3. The program execution starts at the Main Method.
  4. Unlike JAVA, file name could be different from the class name.

Let's develop First Hello World Application using visual studio console.

01. Open your Visual Studio. ( In here i am using VS 2013).