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 FORTRAN
7
C
197
2
C++
198
3 ANSI C
198 JAVA
7
ANSI C++
199
5
C#
199
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 web-
programming 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