KEMBAR78
Csharp Crash Course Extract | PDF
0% found this document useful (0 votes)
32 views2 pages

Csharp Crash Course Extract

The document introduces C# as a modern, object-oriented programming language developed by Microsoft that runs on the .NET platform. It provides an overview of the .NET framework, highlighting key components like CLR and BCL, and includes a simple 'Hello World' example in C#. Additionally, it outlines features of C# such as strong typing, object orientation, and automatic memory management.
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)
32 views2 pages

Csharp Crash Course Extract

The document introduces C# as a modern, object-oriented programming language developed by Microsoft that runs on the .NET platform. It provides an overview of the .NET framework, highlighting key components like CLR and BCL, and includes a simple 'Hello World' example in C#. Additionally, it outlines features of C# such as strong typing, object orientation, and automatic memory management.
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/ 2

Day 1: Introduction to C# and .

NET

## What is C#?

- A modern, object-oriented programming language developed by Microsoft.

- Runs on the .NET platform.

**Theory:** C# (pronounced C-Sharp) is used to develop all kinds of applications such as desktop

apps, web apps, mobile apps, and games. It is similar in syntax to Java and C++, making it easier to

learn if you have some programming background.

## .NET Platform Overview

- .NET is a framework that supports multiple languages (C#, VB.NET, F#).

- Key components: CLR (Common Language Runtime), BCL (Base Class Library).

**Theory:** The CLR helps in managing memory, executing code, and handling exceptions, while

BCL provides essential built-in functions.

## Hello World in C#

using System;

class Program {

static void Main() {

Console.WriteLine("Hello, World!");

## C# Features
- Strongly typed

- Object-oriented

- Automatic memory management (Garbage Collection)

- Rich class libraries

... (Truncated for brevity ? rest of the days included in full process)

You might also like