C#-
C# is an object-oriented programming language developed by Microsoft Corporation.It was developed by Anders Hejlsberg and his team during the development of .Net Framework.
The below reasons make C# a widely used professional language −
- It is a modern programming language.
- It can be compiled on a different different of computer platforms.
- It is a general-purpose programming language
- It is an object-oriented programming language.
- Very easy to learn.
- It is a structured language.
- Simple
- Consistent
- Modern
- Object-oriented
- Type safe
- Compatible
Visual Studio 2010, 2012, 2013, 2015, 2017, 2019 etc.
First C# Program example-
using System;
class Demo
{
public static void Main()
{
Console.WriteLine("Hello world");
Console.ReadLine();
}
}
No comments:
Post a Comment