C# Tutorial provides basic to advanced concepts. C# is a programming language of .NET Framework. Our C# Tutorial  includes all topics of C# such as Introduction of C#, History of C#, Features and Advantages, Simple first program, Variable, Data types, Keywords, Operators, Control flow statements, and all Basic concepts of C# Programming. Objects and classes, Inheritance, Abstraction, Encapsulation, polymorphism, method overloading, method overriding, interface, constructor, destructor, this, static, sealed, property, indexer, array strings, regex, exception handling, multithreading, file IO, collections, delegates, console applications, windows forms applications etc.

What is C# :

C# pronounced as ” C – Sharp “. It is an simple, robust and object oriented programming language which is provoided by microsoft that runs on .NET framework. Anders Heilsberg is the developer of C# language .

C# 1.0 This was the initial version of C# released in 2000. It included features such as garbage collection, type safety, and exception handling. C# 2.0: This version was released in 2005 and introduced several new features, including generics, partial classes, anonymous methods, and iterators.

C# programming language was created for software development in the .NET framework. C# adopt almost all the features of C, C++ and Java Programming language but there are some advanced features which are availabel in C#. C# is a case sensitive programming language. and c# programming are the save with .cs extension. Suppose we write first program in C# then we can write program name like Hello.cs.

By the help of C# programming we can create different types of Robust and Secured applications.

  •  Mobile Applications
  • Web Applications
  • Desktop Applications
  • Games
  • Data Applications
  • Windows
  • Distrubuted Applications
  • Web Services Applicationd
  • Database Applications

C# approved as standard by ECMA and ISO. C# designed for CLI ( Common Language Infrastructure ). CLI is a specification that describes exceutable code and runtime envirnment. C# programming language is influenced by C++, Java, Eiffel, Module-3, Pascal etc languages.

C# Example

using System;

namespace DemoApp
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.Read();
        }
    }
}

Output :

Hello World!

Scroll to Top