Expert Dot Net

Trust me to find new way !

C# .net Tutorial

C# is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft within its .NET initiative led by Anders Hejlsberg. This tutorial will teach you basic C# programming and will also take you through various advanced concepts related to C# programming language.

Audience

This tutorial has been prepared for the beginners to help them understand basic C# programming.

Prerequisites

C# programming is very much based on C and C++ programming languages, so if you have a basic understanding of C or C++ programming, then it will be fun to learn C#.

Execute C# 

Try following example -

using System;

namespace HelloWorldApplication

{

   class HelloWorld

   {

      static void Main(string[] args)

      {

         /* my first program in C# */

         Console.WriteLine("Hello World");

         Console.ReadKey();

      }

   }

}