Skip to main content

C# Programming

 C# is a general-purpose, multi-paradigm programming language. C# encompasses static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented, and component-oriented programming disciplines.More..


History:
Anders Hejlsberg is known as the founder of C# language.C# has evolved much since their first release in the year 2002. It was introduced with .NET Framework 1.0.

Anders Hejlsberg

Example:

using System;
namespace HelloWorldApp {
   
    // Class declaration
    class Geeks {
       
        // Main Method
        static void Main(string[] args) {
           
            // printing Hello World!
            Console.WriteLine("Hello World!");
       
            // running and closing quickly
            Console.ReadKey();
        }
    }
}