SlideShare una empresa de Scribd logo
1 de 19
Part 2
Introduction to
Programming in .NET
Learning Objectives Overview
Lecturer: Jareed Eve;2
 .NET Languages
 Different types of .NET frameworks architectures
 Common Language Infrastructure (CLI),
Assemblies, Metadata, Security, Memory
Management, Class Library*
 Framework Versions (4, 3.5, 3, 2, etc.)
 Common Language Runtime*, .NET Class Libraries
 .NET Framework Components
 The Common Language Runtime
 The Class Library
.NET Languages /1
Lecturer: Jareed Eve;3
 A#
 A# is a port of the Ada programming language. A# is freely distributed by the Department
of Computer Science at the United States Air Force Academy as a service to the Ada
community under the terms of the GNU General Public License.
 Ada was originally designed by a team led by Jean Ichbiah of CII Honeywell Bull under
contract to the United States Department of Defense (DoD) from 1977 to 1983 to
supersede the hundreds of programming languages then used by the DoD.
 C#
 Developed by Microsoft, C# is intended to be a simple, modern, general-purpose, object-
oriented programming language.
 It was developed by Microsoft within its .NET initiative and later approved as a standard
by Ecma and ISO.
 F#
 F# is developed by The F# Software Foundation and Microsoft
 An open-source, strongly typed, multi-paradigm programming language. F# is most often
used as a cross-platform CLI language, but can also be used to generate JavaScript and
GPU code.
 L#
 The language was designed by Rob Blackwell, as was its first implementation.
 L# .NET is a dynamic computer programming language intended to be compiled and
executed on the Ecma-334 and Ecma-335 Common Language Infrastructure (CLI). It is a
dialect of Lisp, adapted from Paul Graham's proposed Arc language.
.NET Languages /2
Lecturer: Jareed Eve;4
 C++
 C++/CLI (Common Language Infrastructure) is a language specification
created by Microsoft and intended to supersede Managed Extensions
for C++.
 Boo
 Developed by Rodrigo B. De Oliveira, Boo is an object-oriented,
statically typed, general-purpose programming language that seeks to
make use of the Common Language Infrastructure's support for Unicode,
internationalization, and web applications, while using a Python-inspired
syntax and a special focus on language and compiler extensibility.
 Cobra
 Cobra is an Object Oriented language designed by Charles Esterbrook
 It is strongly influenced by Python,C#, Eiffel, Objective-C, and other
programming languages
 Cobra is an open-source project; it was released under the MIT License
on February 29, 2008.
 JScript .NET
 Developed by Microsoft, JScript has a strong foundation in Microsoft's
ActiveX/COM technologies, and relies primarily on ActiveX components
to provide much of its functionality (including database access via ADO,
file handling, etc.), whereas JScript .NET uses the .NET Framework to
provide equivalent functionality.
.NET Languages /3
Lecturer: Jareed Eve;5
 IronPython, IronRuby
 IronPython is an implementation of the Python programming language
targeting the .NET Framework
 Jim Hugunin created the project and actively contributed to it up until
Version 1.0 which was released on September 5, 2006. Thereafter, it was
maintained by a small team at Microsoft until the 2.7 Beta 1 release;
Microsoft abandoned IronPython (and its sister project IronRuby) in late
2010, after which event Hugunin left to work at Google. IronPython 2.0
was released on December 10, 2008.
 IronRuby is an implementation of the Ruby programming language
targeting Microsoft .NET framework
 Visual Basic.NET
 Visual Basic .NET (VB.NET) (created by Microsoft) is an object-oriented
computer programming language that can be viewed as an evolution of
the classic Visual Basic (VB), implemented on the .NET Framework
 IronLISP
 IronLisp was an implementation of the Lisp programming language
targeting the Microsoft .NET framework. It was developed and
announced by Xacc.ide on July 23, 2007. No further development will
take place on IronLisp.
.NET Frameworks Architectures
/1
Lecturer: Jareed Eve;6
 Common Language Infrastructure (CLI)
 This is an open specification developed by
Microsoft and standardized by ISO and
ECMA.
 It describes the executable code and runtime
environment that form the core of the
Microsoft .NET Framework and the free
and open source implementations Mono and
Portable.NET.
 The specification defines an environment
that allows multiple high-level languages to
be used on different computer platforms
without being rewritten for specific
Lecturer: Jareed Eve;7
.NET Frameworks Architectures
/2
Lecturer: Jareed Eve;8
 Common Language Infrastructure (CLI)
 Metadata
Describes the high-level structure of the code.
Metadata describes all classes and class members
that are defined in the assembly, and the classes
and class members that the current assembly will
call from another assembly.
 Common Language Specification (CLS)
A set of base rules to which any language targeting
the CLI should conform in order to interoperate with
other CLS-compliant languages. The CLS rules
define a subset of the Common Type System.
.NET Frameworks Architectures
/3
Lecturer: Jareed Eve;9
 Common Language Infrastructure (CLI)
 Common Type System (CTS)
A set of data types and operations that are shared
by all CTS-compliant programming languages.
 Virtual Execution System (VES)
The VES loads and executes CLI-compatible
programs, using the metadata to combine
separately generated pieces of code at runtime.
.NET Frameworks Architectures
/4
Lecturer: Jareed Eve;10
 Common Language Infrastructure (CLI)
Assembly
 An assembly in the Common Language
Infrastructure (CLI) is a compiled code library used
for deployment, versioning, and security.
 There are two types: process assemblies (EXE)
and
library assemblies (DLL).
 A process assembly represents a process that will
use classes defined in library assemblies.
 CLI assemblies contain code which is generated
from a CLI language, and then compiled into
machine language at run time by the just-in-time
compiler. In the .NET framework implementation,
this compiler is part of the Common Language
.NET Frameworks Architectures
/5
Lecturer: Jareed Eve;11
 Common Language Infrastructure (CLI)
Security
 .NET has its own security mechanism with 2 general
features:
 Code Access Security (CAS), and
 Validation and verification.
 Code Access Security is based on evidence that is
associated with a specific assembly.
 Typically the evidence is the source of the assembly.
 Code Access Security uses evidence to determine
the permissions granted to the code. Other code can
demand that calling code is granted a specified
permission.
.NET Frameworks Architectures
/5
Lecturer: Jareed Eve;12
 Common Language Infrastructure (CLI)
Memory Management
 Automatic memory management is one of the
services that the common language runtime
provides. The garbage collector manages the
allocation and release of memory for an application.
 Allocating Memory
When you initialize a new process, the runtime
reserves a contiguous region of address space for
the process.
 Releasing Memory
The garbage collector's optimizing engine
determines the best time to perform a collection
based on the allocations being made. When the
garbage collector performs a collection, it releases
.NET Frameworks Architectures
/6
Lecturer: Jareed Eve;13
Lecturer: Jareed Eve;14
Class Library
Lecturer: Jareed Eve;15
 The .NET Framework includes a set of standard class
libraries.
 The class library is organized in a hierarchy of
namespaces. Most of the built-in APIs are part of
either System.* or Microsoft.* namespaces.
 These class libraries implement a large number of
common functions, such as file reading and writing,
graphic rendering, database interaction, and XML
document manipulation, among others. The .NET
class libraries are available to all CLI compliant
languages.
 The .NET Framework class library is divided into two
parts:
 the Base Class Library and
 the Framework Class Library
Common Language Runtime /1
Lecturer: Jareed Eve;16
 The Common Language Runtime (CLR) is the
virtual machine component of Microsoft's .NET
framework and is responsible for managing the
execution of .NET programs.
 In a process known as Just-in-time compilation, the
compiled code is converted into machine instructions
that, in turn, are executed by the computer's CPU.
 The CLR provides additional services including
memory management, type safety and exception
handling. It provides exception handling, garbage
collection and thread management. CLR is common
to all versions of the .NET framework.
 The CLR is Microsoft's implementation of the
Common Language Infrastructure (CLI) standard.
Common Language Runtime /2
Lecturer: Jareed Eve;17
THE END
Lecturer: Jareed Eve;18
Lecturer: Jareed Eve;19

Más contenido relacionado

La actualidad más candente

Introduction to .NET Programming
Introduction to .NET ProgrammingIntroduction to .NET Programming
Introduction to .NET ProgrammingKarthikeyan Mkr
 
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0Antonio Chagoury
 
Introduction .NET Framework
Introduction .NET FrameworkIntroduction .NET Framework
Introduction .NET Frameworkjavadib
 
Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Bhushan Mulmule
 
3.0 Introduction to .NET Framework
3.0 Introduction to .NET Framework3.0 Introduction to .NET Framework
3.0 Introduction to .NET FrameworkAbdelrahman Hosny
 
.Net framework
.Net framework.Net framework
.Net frameworkRaghu nath
 
c#.Net Windows application
c#.Net Windows application c#.Net Windows application
c#.Net Windows application veera
 
Introduction to VB.net
Introduction to VB.netIntroduction to VB.net
Introduction to VB.netYousaf Sahota
 
Microsoft dot net framework
Microsoft dot net frameworkMicrosoft dot net framework
Microsoft dot net frameworkInstantenigma
 
Introduction to .net
Introduction to .net Introduction to .net
Introduction to .net Jaya Kumari
 
New microsoft office word document
New microsoft office word documentNew microsoft office word document
New microsoft office word documentSIVAJISADHANA
 

La actualidad más candente (18)

Dotnet1
Dotnet1Dotnet1
Dotnet1
 
Net framework
Net frameworkNet framework
Net framework
 
Introduction to .NET Programming
Introduction to .NET ProgrammingIntroduction to .NET Programming
Introduction to .NET Programming
 
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
 
Introduction .NET Framework
Introduction .NET FrameworkIntroduction .NET Framework
Introduction .NET Framework
 
Introducation to C#
Introducation to C#Introducation to C#
Introducation to C#
 
Session i
Session iSession i
Session i
 
Overview of .Net Framework 4.5
Overview of .Net Framework 4.5Overview of .Net Framework 4.5
Overview of .Net Framework 4.5
 
.Net Overview
.Net Overview.Net Overview
.Net Overview
 
3.0 Introduction to .NET Framework
3.0 Introduction to .NET Framework3.0 Introduction to .NET Framework
3.0 Introduction to .NET Framework
 
Dot net
Dot netDot net
Dot net
 
.Net framework
.Net framework.Net framework
.Net framework
 
c#.Net Windows application
c#.Net Windows application c#.Net Windows application
c#.Net Windows application
 
Introduction to VB.net
Introduction to VB.netIntroduction to VB.net
Introduction to VB.net
 
Introduction to .NET Framework
Introduction to .NET FrameworkIntroduction to .NET Framework
Introduction to .NET Framework
 
Microsoft dot net framework
Microsoft dot net frameworkMicrosoft dot net framework
Microsoft dot net framework
 
Introduction to .net
Introduction to .net Introduction to .net
Introduction to .net
 
New microsoft office word document
New microsoft office word documentNew microsoft office word document
New microsoft office word document
 

Destacado

20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental PrinciplesIntro C# Book
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net frameworkThen Murugeshwari
 
Advanced System Analysis And Design
Advanced System Analysis And Design Advanced System Analysis And Design
Advanced System Analysis And Design Anit Thapaliya
 
Library Automation
Library AutomationLibrary Automation
Library AutomationRa Alvi
 
construction of Reservation software solution for Airline Companies project ...
construction of  Reservation software solution for Airline Companies project ...construction of  Reservation software solution for Airline Companies project ...
construction of Reservation software solution for Airline Companies project ...Hagi Sahib
 
Dlis007 library automation
Dlis007 library automationDlis007 library automation
Dlis007 library automationsaniul rahaman
 
Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Vangos Pterneas
 
Introduction to .net framework
Introduction to .net frameworkIntroduction to .net framework
Introduction to .net frameworkArun Prasad
 
La perdurabilidad en las empresas familiasde
La perdurabilidad en las empresas familiasdeLa perdurabilidad en las empresas familiasde
La perdurabilidad en las empresas familiasdemariaperezgamboa
 
.NET Framework 4.0 – Changes & Benefits
.NET Framework 4.0 – Changes & Benefits .NET Framework 4.0 – Changes & Benefits
.NET Framework 4.0 – Changes & Benefits Deepika Chaudhary
 
AUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAbhishek Kumar
 
Library Management System
Library Management SystemLibrary Management System
Library Management SystemAditya Shah
 

Destacado (15)

20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net framework
 
Advanced System Analysis And Design
Advanced System Analysis And Design Advanced System Analysis And Design
Advanced System Analysis And Design
 
Library Automation
Library AutomationLibrary Automation
Library Automation
 
construction of Reservation software solution for Airline Companies project ...
construction of  Reservation software solution for Airline Companies project ...construction of  Reservation software solution for Airline Companies project ...
construction of Reservation software solution for Airline Companies project ...
 
Dlis007 library automation
Dlis007 library automationDlis007 library automation
Dlis007 library automation
 
Dotnet basics
Dotnet basicsDotnet basics
Dotnet basics
 
Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)Introduction to .NET Framework and C# (English)
Introduction to .NET Framework and C# (English)
 
Introduction to .net framework
Introduction to .net frameworkIntroduction to .net framework
Introduction to .net framework
 
Library Management System
Library Management SystemLibrary Management System
Library Management System
 
La perdurabilidad en las empresas familiasde
La perdurabilidad en las empresas familiasdeLa perdurabilidad en las empresas familiasde
La perdurabilidad en las empresas familiasde
 
.NET Framework 4.0 – Changes & Benefits
.NET Framework 4.0 – Changes & Benefits .NET Framework 4.0 – Changes & Benefits
.NET Framework 4.0 – Changes & Benefits
 
AUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEMAUTOMATED LIBRARY MANAGEMENT SYSTEM
AUTOMATED LIBRARY MANAGEMENT SYSTEM
 
Library Management System
Library Management SystemLibrary Management System
Library Management System
 
Hospital management system
Hospital management systemHospital management system
Hospital management system
 

Similar a 02 intro to programming in .net (part 2)

Chapter1_Part1.pptx
Chapter1_Part1.pptxChapter1_Part1.pptx
Chapter1_Part1.pptxRaajzKoirala
 
.Net framework
.Net framework.Net framework
.Net frameworkViv EK
 
.Net the begining
.Net the begining.Net the begining
.Net the beginingcncwebworld
 
Inside .net framework
Inside .net frameworkInside .net framework
Inside .net frameworkFaisal Aziz
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iRakesh Joshi
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iRakesh Joshi
 
Future of .NET - .NET on Non Windows Platforms
Future of .NET - .NET on Non Windows PlatformsFuture of .NET - .NET on Non Windows Platforms
Future of .NET - .NET on Non Windows PlatformsAniruddha Chakrabarti
 
.NET Core, ASP.NET Core Course, Session 3
.NET Core, ASP.NET Core Course, Session 3.NET Core, ASP.NET Core Course, Session 3
.NET Core, ASP.NET Core Course, Session 3aminmesbahi
 
Net framework
Net frameworkNet framework
Net frameworkjhsri
 
Components of .NET Framework
Components of .NET FrameworkComponents of .NET Framework
Components of .NET FrameworkRoshith S Pai
 
Presentation1
Presentation1Presentation1
Presentation1kpkcsc
 
Session2 (3)
Session2 (3)Session2 (3)
Session2 (3)DrUjwala1
 

Similar a 02 intro to programming in .net (part 2) (20)

Chapter1_Part1.pptx
Chapter1_Part1.pptxChapter1_Part1.pptx
Chapter1_Part1.pptx
 
.Net framework
.Net framework.Net framework
.Net framework
 
.Net the begining
.Net the begining.Net the begining
.Net the begining
 
c#.pptx
c#.pptxc#.pptx
c#.pptx
 
Net framework
Net frameworkNet framework
Net framework
 
Introduction to .net
Introduction to .netIntroduction to .net
Introduction to .net
 
.Net slid
.Net slid.Net slid
.Net slid
 
.Net
.Net.Net
.Net
 
Inside .net framework
Inside .net frameworkInside .net framework
Inside .net framework
 
1.0
1.01.0
1.0
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part i
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part i
 
Future of .NET - .NET on Non Windows Platforms
Future of .NET - .NET on Non Windows PlatformsFuture of .NET - .NET on Non Windows Platforms
Future of .NET - .NET on Non Windows Platforms
 
Introduction to C# Programming
Introduction to C# ProgrammingIntroduction to C# Programming
Introduction to C# Programming
 
.NET Core, ASP.NET Core Course, Session 3
.NET Core, ASP.NET Core Course, Session 3.NET Core, ASP.NET Core Course, Session 3
.NET Core, ASP.NET Core Course, Session 3
 
Net framework
Net frameworkNet framework
Net framework
 
Components of .NET Framework
Components of .NET FrameworkComponents of .NET Framework
Components of .NET Framework
 
Chapter1
Chapter1Chapter1
Chapter1
 
Presentation1
Presentation1Presentation1
Presentation1
 
Session2 (3)
Session2 (3)Session2 (3)
Session2 (3)
 

Último

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 

Último (20)

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 

02 intro to programming in .net (part 2)

  • 2. Learning Objectives Overview Lecturer: Jareed Eve;2  .NET Languages  Different types of .NET frameworks architectures  Common Language Infrastructure (CLI), Assemblies, Metadata, Security, Memory Management, Class Library*  Framework Versions (4, 3.5, 3, 2, etc.)  Common Language Runtime*, .NET Class Libraries  .NET Framework Components  The Common Language Runtime  The Class Library
  • 3. .NET Languages /1 Lecturer: Jareed Eve;3  A#  A# is a port of the Ada programming language. A# is freely distributed by the Department of Computer Science at the United States Air Force Academy as a service to the Ada community under the terms of the GNU General Public License.  Ada was originally designed by a team led by Jean Ichbiah of CII Honeywell Bull under contract to the United States Department of Defense (DoD) from 1977 to 1983 to supersede the hundreds of programming languages then used by the DoD.  C#  Developed by Microsoft, C# is intended to be a simple, modern, general-purpose, object- oriented programming language.  It was developed by Microsoft within its .NET initiative and later approved as a standard by Ecma and ISO.  F#  F# is developed by The F# Software Foundation and Microsoft  An open-source, strongly typed, multi-paradigm programming language. F# is most often used as a cross-platform CLI language, but can also be used to generate JavaScript and GPU code.  L#  The language was designed by Rob Blackwell, as was its first implementation.  L# .NET is a dynamic computer programming language intended to be compiled and executed on the Ecma-334 and Ecma-335 Common Language Infrastructure (CLI). It is a dialect of Lisp, adapted from Paul Graham's proposed Arc language.
  • 4. .NET Languages /2 Lecturer: Jareed Eve;4  C++  C++/CLI (Common Language Infrastructure) is a language specification created by Microsoft and intended to supersede Managed Extensions for C++.  Boo  Developed by Rodrigo B. De Oliveira, Boo is an object-oriented, statically typed, general-purpose programming language that seeks to make use of the Common Language Infrastructure's support for Unicode, internationalization, and web applications, while using a Python-inspired syntax and a special focus on language and compiler extensibility.  Cobra  Cobra is an Object Oriented language designed by Charles Esterbrook  It is strongly influenced by Python,C#, Eiffel, Objective-C, and other programming languages  Cobra is an open-source project; it was released under the MIT License on February 29, 2008.  JScript .NET  Developed by Microsoft, JScript has a strong foundation in Microsoft's ActiveX/COM technologies, and relies primarily on ActiveX components to provide much of its functionality (including database access via ADO, file handling, etc.), whereas JScript .NET uses the .NET Framework to provide equivalent functionality.
  • 5. .NET Languages /3 Lecturer: Jareed Eve;5  IronPython, IronRuby  IronPython is an implementation of the Python programming language targeting the .NET Framework  Jim Hugunin created the project and actively contributed to it up until Version 1.0 which was released on September 5, 2006. Thereafter, it was maintained by a small team at Microsoft until the 2.7 Beta 1 release; Microsoft abandoned IronPython (and its sister project IronRuby) in late 2010, after which event Hugunin left to work at Google. IronPython 2.0 was released on December 10, 2008.  IronRuby is an implementation of the Ruby programming language targeting Microsoft .NET framework  Visual Basic.NET  Visual Basic .NET (VB.NET) (created by Microsoft) is an object-oriented computer programming language that can be viewed as an evolution of the classic Visual Basic (VB), implemented on the .NET Framework  IronLISP  IronLisp was an implementation of the Lisp programming language targeting the Microsoft .NET framework. It was developed and announced by Xacc.ide on July 23, 2007. No further development will take place on IronLisp.
  • 6. .NET Frameworks Architectures /1 Lecturer: Jareed Eve;6  Common Language Infrastructure (CLI)  This is an open specification developed by Microsoft and standardized by ISO and ECMA.  It describes the executable code and runtime environment that form the core of the Microsoft .NET Framework and the free and open source implementations Mono and Portable.NET.  The specification defines an environment that allows multiple high-level languages to be used on different computer platforms without being rewritten for specific
  • 8. .NET Frameworks Architectures /2 Lecturer: Jareed Eve;8  Common Language Infrastructure (CLI)  Metadata Describes the high-level structure of the code. Metadata describes all classes and class members that are defined in the assembly, and the classes and class members that the current assembly will call from another assembly.  Common Language Specification (CLS) A set of base rules to which any language targeting the CLI should conform in order to interoperate with other CLS-compliant languages. The CLS rules define a subset of the Common Type System.
  • 9. .NET Frameworks Architectures /3 Lecturer: Jareed Eve;9  Common Language Infrastructure (CLI)  Common Type System (CTS) A set of data types and operations that are shared by all CTS-compliant programming languages.  Virtual Execution System (VES) The VES loads and executes CLI-compatible programs, using the metadata to combine separately generated pieces of code at runtime.
  • 10. .NET Frameworks Architectures /4 Lecturer: Jareed Eve;10  Common Language Infrastructure (CLI) Assembly  An assembly in the Common Language Infrastructure (CLI) is a compiled code library used for deployment, versioning, and security.  There are two types: process assemblies (EXE) and library assemblies (DLL).  A process assembly represents a process that will use classes defined in library assemblies.  CLI assemblies contain code which is generated from a CLI language, and then compiled into machine language at run time by the just-in-time compiler. In the .NET framework implementation, this compiler is part of the Common Language
  • 11. .NET Frameworks Architectures /5 Lecturer: Jareed Eve;11  Common Language Infrastructure (CLI) Security  .NET has its own security mechanism with 2 general features:  Code Access Security (CAS), and  Validation and verification.  Code Access Security is based on evidence that is associated with a specific assembly.  Typically the evidence is the source of the assembly.  Code Access Security uses evidence to determine the permissions granted to the code. Other code can demand that calling code is granted a specified permission.
  • 12. .NET Frameworks Architectures /5 Lecturer: Jareed Eve;12  Common Language Infrastructure (CLI) Memory Management  Automatic memory management is one of the services that the common language runtime provides. The garbage collector manages the allocation and release of memory for an application.  Allocating Memory When you initialize a new process, the runtime reserves a contiguous region of address space for the process.  Releasing Memory The garbage collector's optimizing engine determines the best time to perform a collection based on the allocations being made. When the garbage collector performs a collection, it releases
  • 15. Class Library Lecturer: Jareed Eve;15  The .NET Framework includes a set of standard class libraries.  The class library is organized in a hierarchy of namespaces. Most of the built-in APIs are part of either System.* or Microsoft.* namespaces.  These class libraries implement a large number of common functions, such as file reading and writing, graphic rendering, database interaction, and XML document manipulation, among others. The .NET class libraries are available to all CLI compliant languages.  The .NET Framework class library is divided into two parts:  the Base Class Library and  the Framework Class Library
  • 16. Common Language Runtime /1 Lecturer: Jareed Eve;16  The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework and is responsible for managing the execution of .NET programs.  In a process known as Just-in-time compilation, the compiled code is converted into machine instructions that, in turn, are executed by the computer's CPU.  The CLR provides additional services including memory management, type safety and exception handling. It provides exception handling, garbage collection and thread management. CLR is common to all versions of the .NET framework.  The CLR is Microsoft's implementation of the Common Language Infrastructure (CLI) standard.
  • 17. Common Language Runtime /2 Lecturer: Jareed Eve;17

Notas del editor

  1. http://en.wikipedia.org/wiki/Metadata_(CLI)
  2. http://en.wikipedia.org/wiki/Assembly_(CLI)
  3. The Base Class Library (BCL) includes a small subset of the entire class library and is the core set of classes that serve as the basic API of the Common Language Runtime. The classes in mscorlib.dll and some of the classes in System.dll and System.core.dll are considered to be a part of the BCL. The BCL classes are available in both .NET Framework as well as its alternative implementations including .NET Compact Framework, Microsoft Silverlight and Mono.The Framework Class Library (FCL) is a superset of the BCL classes and refers to the entire class library that ships with .NET Framework. It includes an expanded set of libraries, including Windows Forms, ADO.NET, ASP.NET, Language Integrated Query, Windows Presentation Foundation, Windows Communication Foundation among others. The FCL is much larger in scope than standard libraries for languages like C++, and comparable in scope to the standard libraries of Java.
  4. All programs written for the .NET framework, regardless of programming language, are executed by the CLR.
  5. All programs written for the .NET framework, regardless of programming language, are executed by the CLR.