0% found this document useful (0 votes)
2K views10 pages

C Sharp Presentation Slides

C# is an object-oriented programming language developed by Microsoft that is designed to be simple, modern and flexible. It was created as Microsoft wanted an environment that was fully integrated with web programming practices and existing systems. Some key reasons for its development included allowing control for scientific, commercial and business applications like C and C++, but with a modern language that supported the .NET framework. The presentation provided a simple "Hello World" C# program as an example of how to write and execute a basic C# program.

Uploaded by

akhot86
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views10 pages

C Sharp Presentation Slides

C# is an object-oriented programming language developed by Microsoft that is designed to be simple, modern and flexible. It was created as Microsoft wanted an environment that was fully integrated with web programming practices and existing systems. Some key reasons for its development included allowing control for scientific, commercial and business applications like C and C++, but with a modern language that supported the .NET framework. The presentation provided a simple "Hello World" C# program as an example of how to write and execute a basic C# program.

Uploaded by

akhot86
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 10

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

You might also like