History of C#
The C# programming language develop by "Microsoft Corporation" in USA. which is pronounced as C Sharp, It is fully Object-oriented language like java, and the C# is the first language which is Component-oriented language. During the time of design the applications, it supports the key feature of .NET Framework.
The .net Framework can supports the more than 50( fifty ) Successful language to built the software applications and C# is one.
Some Characteristics of C# :
- Simple
- Object-oriented
- Compatible
- Flexible
- Consistent
- Type-safe
- Modern, etc....
First Program in C#:
Namespace HelloWorld{
//Declaration of the Class
Public Class hello{
//main Functions/methods
System.Console.WriteLine("Hello World !")
//statement
}
}
}
Output :
Hello World !