Contact

Name

Email *

Message *

Friday, 3 April 2015

The C# Keywords : Language Basics

abstract      as         base          bool         break
Byte          case       catch         char         checked
class         const      continue      decimal      default
delegate      do         double        else         enum
event         explicit   extern        false        finally
fixed         float      for           foreach      goto
if            implicit   in            int          interface
internal      is         lock          long         namespace
new           null       object        operator     out
override      params     private       protected    public
readonly      ref        return        sbyte        sealed
short         sizeof     stackalloc    static       string
struct        switch     this          throw        true
try           typeof     uint          ulong        unchecked
unsafe        ushort     using         virtual      volatile
void          while

Simple C# Program

using System; 
 
class MainClass { 
   
  public static void Main() { 
    Console.WriteLine("A simple C# program."); 
  } 
}

C# Introduction

INTRODUCTION


What is Csharp ( C# ) 

* The C# programming language (pronounced "C-Sharp") is a powerful object-oriented programming languages. 
* C# was developed by Microsoft. 
* It enables programmers to quickly build a wide range of applications for the .NET platform. 
* C# reduces the development time of applications and also to attain good productivity. 
* All .NET languages, including C#, follow the Common Language Specification (CLS).