SlideShare uma empresa Scribd logo
1 de 11
Baixar para ler 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

Mais conteúdo relacionado

Semelhante a آموزش سی شارپ - بخش 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
 

Semelhante a آموزش سی شارپ - بخش 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
 

Mais de 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
 

Mais de 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
 

Último

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
 
+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
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 

Último (20)

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
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
+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...
 
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
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
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
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
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
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 

آموزش سی شارپ - بخش 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