SlideShare a Scribd company logo
1 of 11
Download to read offline
C# Tutorial – Part 1 – .NET Basics
‫شارپ‬ ‫سی‬ ‫آموزش‬
–
‫بخش‬
1
–
‫نت‬ ‫دات‬ ‫مبانی‬
https://hosseinzahed.com
hello@hosseinzahed.com
1
Hossein Zahed ‫زاهد‬ ‫حسین‬
-
C# Features & History – ‫شارپ‬ ‫سی‬ ‫تاریخچه‬ ‫و‬ ‫ها‬ ‫ویژگی‬
https://hosseinzahed.com
hello@hosseinzahed.com
2
Feature ‫ویژگی‬
General-purpose ‫منظوره‬ ‫همه‬
Strongly typed ‫ها‬ ‫داده‬ ‫نوع‬ ‫بر‬ ‫مبتنی‬
Multi-paradigm ‫پارادایمی‬ ‫چند‬
Imperative (O.O.P) ‫کد‬ ‫اجرای‬ ‫نحوه‬ ‫بر‬ ‫متمرکز‬
(
‫شود‬ ‫اجرا‬ ‫چگونه‬
)
Declarative (Functional) ‫کد‬ ‫اجرای‬ ‫منطق‬ ‫بر‬ ‫متمرکز‬
(
‫شود‬ ‫اجرا‬ ‫چیزی‬ ‫چه‬
)
Generic ‫وجهی‬ ‫چند‬ ‫کدهای‬ ‫از‬ ‫پشتیبانی‬
Object-oriented ‫گرا‬ ‫شی‬
Component-oriented ‫گرا‬ ‫مؤلفه‬
First release: 2002
Designed by: Anders Hejlsberg
Program Manager: Mads Torgersen
Ownership: Microsoft
‫عرضه‬ ‫اولین‬
:
‫سال‬
1381
‫توسط‬ ‫شده‬ ‫طراحی‬
:
‫اندرس‬
‫هایلزبرگ‬
‫نویسی‬ ‫برنامه‬ ‫مدیر‬
:
‫مدز‬
‫تورگرسن‬
‫مالکیت‬
:
‫مایکروسافت‬
C# Versions – ‫شارپ‬ ‫سی‬ ‫های‬ ‫نسخه‬
Version Release Date
1.0 Apr. 2002
2.0 Nov. 2005
3.0 Nov. 2007
4.0 Apr. 2010
5.0 Aug. 2012
6.0 Jul. 2015
7.0 Mar. 2017
8.0 Sep. 2019
9.0 Nov. 2020
10.0 Nov. 2021
11.0 Nov. 2022
https://hosseinzahed.com
hello@hosseinzahed.com
3
https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-version-history
Roslyn Compiler – ‫رزلین‬ ‫کامپایلر‬
https://hosseinzahed.com
hello@hosseinzahed.com
4
Microsoft Frameworks – ‫مایکروسافت‬ ‫های‬ ‫چهارچوب‬
Title Description
.NET Framework
(v4.8)
.NET Framework is the original implementation of .NET which was developed by Microsoft in the early
2000s to build Web and Desktop applications for Windows. It allows us to write applications in C#,
Visual Basic, and F#. (First release: 2002)
.NET Core
(v7.0)
All aspects of .NET Core are open-source including class libraries, runtime, compilers, languages as well
as application frameworks. .NET Core also supports C#, Visual Basic, and F#. It can run the application
code with the same behavior on multiple architectures, including x64, x86, and ARM. It has a flexible
deployment model in which it can be included in the application or installed side-by-side (user-wide or
system-wide). .NET Core is cross platform and it can also be used with Docker. (First release: 2019)
XAMARIN
(v5.0)
Xamarin extends the .NET developer platform with tools and libraries specifically for building apps for Android,
iOS, tvOS, watchOS, macOS, and Windows.
.NET Standard
(v2.1)
.NET Standard is a specification (not an implementation of .NET) that defines the set of APIs that all
.NET implementations must provide. It addresses the code sharing problem for .NET developers across
all platforms by bringing APIs across different environments. These APIs can be used by both .NET
Framework and .NET Core projects. (First release: 2018)
https://hosseinzahed.com
hello@hosseinzahed.com
5
.NET SDK & Runtime – ‫نت‬ ‫دات‬ ‫کننده‬ ‫اجرا‬ ‫و‬ ‫دهنده‬ ‫توسعه‬
https://hosseinzahed.com
hello@hosseinzahed.com
6
Title Description
.NET SDK (Software Development Kit) ‫اپلیکیشن‬ ‫اجرای‬ ‫و‬ ‫تست‬ ،‫توسعه‬ ،‫پروژه‬ ‫ایجاد‬ ‫برای‬
.NET Runtime ‫اپلیکیشن‬ ‫اجرای‬ ‫برای‬ ‫فقط‬
(
‫سرور‬ ‫روی‬ ‫بر‬
)
https://dotnet.microsoft.com/en-us/download
.NET Family – ‫نت‬ ‫دات‬ ‫خانواده‬
https://hosseinzahed.com
hello@hosseinzahed.com
7
Open Source Projects – ‫باز‬ ‫متن‬ ‫های‬ ‫پروژه‬
https://hosseinzahed.com
hello@hosseinzahed.com
8
Title GitHub Link
Roslyn https://github.com/dotnet/roslyn
.NET SDK https://github.com/dotnet/sdk
.NET Runtime https://github.com/dotnet/runtime
C# Language https://github.com/dotnet/csharplang
ASP.NET Core https://github.com/dotnet/aspnetcore
WPF https://github.com/dotnet/wpf
All dotnet repositories: https://github.com/dotnet
Nuget Packages – ‫نوگت‬ ‫های‬ ‫بسته‬
https://hosseinzahed.com
hello@hosseinzahed.com
9
https://nuget.org
330K packages
266B downloads
.NET Stack – ‫نت‬ ‫دات‬ ‫مجموعه‬
https://hosseinzahed.com
hello@hosseinzahed.com
10
Thank you - ‫سپاس‬
https://hosseinzahed.com
hello@hosseinzahed.com
11

More Related Content

Similar to آموزش سی شارپ - بخش 1

.Net framework
.Net framework.Net framework
.Net framework
Arun Pal
 
01 intro to programming in .net
01   intro to programming in .net01   intro to programming in .net
01 intro to programming in .net
Felisha Hosein
 

Similar to آموزش سی شارپ - بخش 1 (20)

Academy PRO: .NET Core intro
Academy PRO: .NET Core introAcademy PRO: .NET Core intro
Academy PRO: .NET Core intro
 
Net framework
Net frameworkNet framework
Net framework
 
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
ASFWS 2013 - Advances in secure (ASP).NET development – break the hackers’ sp...
 
Learn .NET Core - Introduction
Learn .NET Core - IntroductionLearn .NET Core - Introduction
Learn .NET Core - Introduction
 
ASP.NET vs ASP.NET Core
ASP.NET vs ASP.NET CoreASP.NET vs ASP.NET Core
ASP.NET vs ASP.NET Core
 
.NET Core on Mac
.NET Core on Mac.NET Core on Mac
.NET Core on Mac
 
Sviluppo x platform con xamarin
Sviluppo x platform con xamarin Sviluppo x platform con xamarin
Sviluppo x platform con xamarin
 
ASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bitsASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bits
 
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
 
.Net framework vs .net core a complete comparison
.Net framework vs .net core  a complete comparison.Net framework vs .net core  a complete comparison
.Net framework vs .net core a complete comparison
 
O futuro do .NET : O que eu preciso saber
O futuro do .NET : O que eu preciso saberO futuro do .NET : O que eu preciso saber
O futuro do .NET : O que eu preciso saber
 
.Net framework
.Net framework.Net framework
.Net framework
 
Raffaele Rialdi
Raffaele RialdiRaffaele Rialdi
Raffaele Rialdi
 
Top 10 IDEs for React.js Developers in 2021
Top 10 IDEs for React.js Developers in 2021Top 10 IDEs for React.js Developers in 2021
Top 10 IDEs for React.js Developers in 2021
 
Asp dot net
Asp dot netAsp dot net
Asp dot net
 
01 intro to programming in .net
01   intro to programming in .net01   intro to programming in .net
01 intro to programming in .net
 
Introduction to programming world
Introduction to programming worldIntroduction to programming world
Introduction to programming world
 
Webhouse
WebhouseWebhouse
Webhouse
 
.NET MeetUp Prague 2017 - .NET Standard -- Karel Zikmund
.NET MeetUp Prague 2017 - .NET Standard -- Karel Zikmund.NET MeetUp Prague 2017 - .NET Standard -- Karel Zikmund
.NET MeetUp Prague 2017 - .NET Standard -- Karel Zikmund
 
Net Framework vs .Net Core A Complete Comparison.pdf
Net Framework vs  .Net Core  A Complete Comparison.pdfNet Framework vs  .Net Core  A Complete Comparison.pdf
Net Framework vs .Net Core A Complete Comparison.pdf
 

More from Hossein Zahed

Network Essentials v2.0
Network Essentials v2.0Network Essentials v2.0
Network Essentials v2.0
Hossein Zahed
 
Microsoft SQL Server 2008
Microsoft SQL Server 2008Microsoft SQL Server 2008
Microsoft SQL Server 2008
Hossein Zahed
 
.Net Framework Basics
.Net Framework Basics.Net Framework Basics
.Net Framework Basics
Hossein Zahed
 

More from Hossein Zahed (19)

Machine Learning with ML.NET
Machine Learning with ML.NETMachine Learning with ML.NET
Machine Learning with ML.NET
 
8 Database Paradigms
8 Database Paradigms8 Database Paradigms
8 Database Paradigms
 
مبانی رایانش ابری
مبانی رایانش ابریمبانی رایانش ابری
مبانی رایانش ابری
 
HTTPS نحوه کارکرد پروتکل
HTTPS نحوه کارکرد پروتکلHTTPS نحوه کارکرد پروتکل
HTTPS نحوه کارکرد پروتکل
 
مبانی چابکی و اسکرام
مبانی چابکی و اسکراممبانی چابکی و اسکرام
مبانی چابکی و اسکرام
 
فرآیند توسعه نرم افزار
فرآیند توسعه نرم افزارفرآیند توسعه نرم افزار
فرآیند توسعه نرم افزار
 
مبانی اینترنت
مبانی اینترنتمبانی اینترنت
مبانی اینترنت
 
تخته سیاه آنلاین
تخته سیاه آنلاینتخته سیاه آنلاین
تخته سیاه آنلاین
 
مفاهیم اساسی برنامه نویسی کامپیوتر
مفاهیم اساسی برنامه نویسی کامپیوترمفاهیم اساسی برنامه نویسی کامپیوتر
مفاهیم اساسی برنامه نویسی کامپیوتر
 
ASP.NET MVC 5 - EF 6 - VS2015
ASP.NET MVC 5 - EF 6 - VS2015ASP.NET MVC 5 - EF 6 - VS2015
ASP.NET MVC 5 - EF 6 - VS2015
 
SEO Fundamentals
SEO FundamentalsSEO Fundamentals
SEO Fundamentals
 
Big Data World
Big Data WorldBig Data World
Big Data World
 
CSharp Language Overview Part 1
CSharp Language Overview Part 1CSharp Language Overview Part 1
CSharp Language Overview Part 1
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
HTML & XHTML Basics
HTML & XHTML BasicsHTML & XHTML Basics
HTML & XHTML Basics
 
Network Essentials v2.0
Network Essentials v2.0Network Essentials v2.0
Network Essentials v2.0
 
Microsoft SQL Server 2008
Microsoft SQL Server 2008Microsoft SQL Server 2008
Microsoft SQL Server 2008
 
.Net Framework Basics
.Net Framework Basics.Net Framework Basics
.Net Framework Basics
 
Network Essentials
Network EssentialsNetwork Essentials
Network Essentials
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Recently uploaded (20)

%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 

آموزش سی شارپ - بخش 1

  • 1. C# Tutorial – Part 1 – .NET Basics ‫شارپ‬ ‫سی‬ ‫آموزش‬ – ‫بخش‬ 1 – ‫نت‬ ‫دات‬ ‫مبانی‬ https://hosseinzahed.com hello@hosseinzahed.com 1 Hossein Zahed ‫زاهد‬ ‫حسین‬ -
  • 2. C# Features & History – ‫شارپ‬ ‫سی‬ ‫تاریخچه‬ ‫و‬ ‫ها‬ ‫ویژگی‬ https://hosseinzahed.com hello@hosseinzahed.com 2 Feature ‫ویژگی‬ General-purpose ‫منظوره‬ ‫همه‬ Strongly typed ‫ها‬ ‫داده‬ ‫نوع‬ ‫بر‬ ‫مبتنی‬ Multi-paradigm ‫پارادایمی‬ ‫چند‬ Imperative (O.O.P) ‫کد‬ ‫اجرای‬ ‫نحوه‬ ‫بر‬ ‫متمرکز‬ ( ‫شود‬ ‫اجرا‬ ‫چگونه‬ ) Declarative (Functional) ‫کد‬ ‫اجرای‬ ‫منطق‬ ‫بر‬ ‫متمرکز‬ ( ‫شود‬ ‫اجرا‬ ‫چیزی‬ ‫چه‬ ) Generic ‫وجهی‬ ‫چند‬ ‫کدهای‬ ‫از‬ ‫پشتیبانی‬ Object-oriented ‫گرا‬ ‫شی‬ Component-oriented ‫گرا‬ ‫مؤلفه‬ First release: 2002 Designed by: Anders Hejlsberg Program Manager: Mads Torgersen Ownership: Microsoft ‫عرضه‬ ‫اولین‬ : ‫سال‬ 1381 ‫توسط‬ ‫شده‬ ‫طراحی‬ : ‫اندرس‬ ‫هایلزبرگ‬ ‫نویسی‬ ‫برنامه‬ ‫مدیر‬ : ‫مدز‬ ‫تورگرسن‬ ‫مالکیت‬ : ‫مایکروسافت‬
  • 3. C# Versions – ‫شارپ‬ ‫سی‬ ‫های‬ ‫نسخه‬ Version Release Date 1.0 Apr. 2002 2.0 Nov. 2005 3.0 Nov. 2007 4.0 Apr. 2010 5.0 Aug. 2012 6.0 Jul. 2015 7.0 Mar. 2017 8.0 Sep. 2019 9.0 Nov. 2020 10.0 Nov. 2021 11.0 Nov. 2022 https://hosseinzahed.com hello@hosseinzahed.com 3 https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-version-history
  • 4. Roslyn Compiler – ‫رزلین‬ ‫کامپایلر‬ https://hosseinzahed.com hello@hosseinzahed.com 4
  • 5. Microsoft Frameworks – ‫مایکروسافت‬ ‫های‬ ‫چهارچوب‬ Title Description .NET Framework (v4.8) .NET Framework is the original implementation of .NET which was developed by Microsoft in the early 2000s to build Web and Desktop applications for Windows. It allows us to write applications in C#, Visual Basic, and F#. (First release: 2002) .NET Core (v7.0) All aspects of .NET Core are open-source including class libraries, runtime, compilers, languages as well as application frameworks. .NET Core also supports C#, Visual Basic, and F#. It can run the application code with the same behavior on multiple architectures, including x64, x86, and ARM. It has a flexible deployment model in which it can be included in the application or installed side-by-side (user-wide or system-wide). .NET Core is cross platform and it can also be used with Docker. (First release: 2019) XAMARIN (v5.0) Xamarin extends the .NET developer platform with tools and libraries specifically for building apps for Android, iOS, tvOS, watchOS, macOS, and Windows. .NET Standard (v2.1) .NET Standard is a specification (not an implementation of .NET) that defines the set of APIs that all .NET implementations must provide. It addresses the code sharing problem for .NET developers across all platforms by bringing APIs across different environments. These APIs can be used by both .NET Framework and .NET Core projects. (First release: 2018) https://hosseinzahed.com hello@hosseinzahed.com 5
  • 6. .NET SDK & Runtime – ‫نت‬ ‫دات‬ ‫کننده‬ ‫اجرا‬ ‫و‬ ‫دهنده‬ ‫توسعه‬ https://hosseinzahed.com hello@hosseinzahed.com 6 Title Description .NET SDK (Software Development Kit) ‫اپلیکیشن‬ ‫اجرای‬ ‫و‬ ‫تست‬ ،‫توسعه‬ ،‫پروژه‬ ‫ایجاد‬ ‫برای‬ .NET Runtime ‫اپلیکیشن‬ ‫اجرای‬ ‫برای‬ ‫فقط‬ ( ‫سرور‬ ‫روی‬ ‫بر‬ ) https://dotnet.microsoft.com/en-us/download
  • 7. .NET Family – ‫نت‬ ‫دات‬ ‫خانواده‬ https://hosseinzahed.com hello@hosseinzahed.com 7
  • 8. Open Source Projects – ‫باز‬ ‫متن‬ ‫های‬ ‫پروژه‬ https://hosseinzahed.com hello@hosseinzahed.com 8 Title GitHub Link Roslyn https://github.com/dotnet/roslyn .NET SDK https://github.com/dotnet/sdk .NET Runtime https://github.com/dotnet/runtime C# Language https://github.com/dotnet/csharplang ASP.NET Core https://github.com/dotnet/aspnetcore WPF https://github.com/dotnet/wpf All dotnet repositories: https://github.com/dotnet
  • 9. Nuget Packages – ‫نوگت‬ ‫های‬ ‫بسته‬ https://hosseinzahed.com hello@hosseinzahed.com 9 https://nuget.org 330K packages 266B downloads
  • 10. .NET Stack – ‫نت‬ ‫دات‬ ‫مجموعه‬ https://hosseinzahed.com hello@hosseinzahed.com 10
  • 11. Thank you - ‫سپاس‬ https://hosseinzahed.com hello@hosseinzahed.com 11