C# (C Sharp) is an object-oriented programming language developed by Microsoft for building desktop, web, mobile, cloud, and enterprise applications.
Features
- Object-Oriented
- Type Safe
- Platform Independent (.NET)
- Automatic Garbage Collection
- Rich Class Library
Example
using System;
class Program
{
static void Main()
{
Console.WriteLine("Hello World");
}
}
Interview Tips
- Developed by Microsoft.
- Runs on the .NET platform.
- Supports OOP concepts.