0% found this document useful (0 votes)
15 views6 pages

Zari C Sharp

Uploaded by

zandry03
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views6 pages

Zari C Sharp

Uploaded by

zandry03
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

C#

Programming Language
By Andrea Zari
WHAT IS C#?
C# is a modern, general-purpose programming
language that can be used to perform a wide range of
tasks and objectives that span over a variety of
professions. C# is primarily used on the Windows .NET
framework. This highly versatile programming language
is an object-oriented programming language (OOP) and
fairly new to the game, yet already a reliable crowd
pleaser.
The IDE usually used to code in C# is Visual Studio Code
THE CREATION
Anders Hejlsberg, a Danish
software engineer, is the key
contributor to the
development of C#.
In 1999, he created a team to
develop a new language that
was later called "Cool". The
project was approved and
announced in July 2000 at the
.NET Developers Conference.
The language was later
renamed C#.
C# is pretty similar to Java but it
differs from it in some key elements:

1. Automated management
of the memory 4. the server running the
application must be
Windows-based.

CONS
PROS

2. Integrated query language


(LINQ) 5. C# is less flexible because it
depends mainly on the
.Net framework.

3. simple Backward
compatibility 6. Subpar GUI quality of the
platform
PROGRAM EXAMPLE

using System; HELLO WORLD!


class HelloWorldApp The most classic algorithm
{
public static void Main(string[] args)
that can be done in any
{ language, it prints “Hello
Console.WriteLine("Hello World!"); World!” in the console
Console.ReadLine ();
}
}
Thanks for your
attention
If you have any question don’t hesitate asking them!

Andrea Zari, 28/03/2022

You might also like