PRESENTATION
ON By – Amol Khot.
What is C# ? Programming language developed by Microsoft Corporation ,USA. Fully Object-oriented language like JAVA.
First component-oriented language.
Design to support key features of .NET Framework.
Why C# ? Large number of computer languages are developed , Choice depends on factors such as H/W environment , business environment and user requirements.
195 7
FORTRAN
C 197 2 198 3 198 7
C++ ANSI C JAVA ANSI C++
199 5 199
C#
Why C# ? C and C++ are the most wildly used languages in software industry for last 20 years They provide programmers control for developing scientific , commercial & business applications.
Why C# ? Microsoft want an environment that * completely in tune with webprogramming practices, * easily integrates with existing system. therefore Microsoft decided to design new language.
Characteristics of C#
Simple
Modern
Object-Oriented
Versionable
Flexible
First ‘Hello World’ program using System; // System is a namespace class Hello { public static void Main() { Console.WriteLine( "Hello world"); } }
Executing the Program After creating a program, save it with .cs
To compiling type command csc <program name>.cs
If the program is error free then C# compiler create a executable file <program
Thank You