SlideShare a Scribd company logo
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 platform .Net core fundamentals
.Net platform .Net core  fundamentals.Net platform .Net core  fundamentals
.Net platform .Net core fundamentals
Hosein Mansouri
 
Academy PRO: .NET Core intro
Academy PRO: .NET Core introAcademy PRO: .NET Core intro
Academy PRO: .NET Core intro
Binary Studio
 
Net framework
Net frameworkNet framework
Net framework
Saiteja Kaparthi
 
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...
Cyber Security Alliance
 
Learn .NET Core - Introduction
Learn .NET Core - IntroductionLearn .NET Core - Introduction
Learn .NET Core - Introduction
Eng Teong Cheah
 
ASP.NET vs ASP.NET Core
ASP.NET vs ASP.NET CoreASP.NET vs ASP.NET Core
ASP.NET vs ASP.NET Core
Öğr. Gör. Erkan HÜRNALI
 
.NET Core on Mac
.NET Core on Mac.NET Core on Mac
.NET Core on Mac
Melania Andrisan (Danciu)
 
Sviluppo x platform con xamarin
Sviluppo x platform con xamarin Sviluppo x platform con xamarin
Sviluppo x platform con xamarin
Dan Ardelean
 
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
Ken Cenerelli
 
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
Aniruddha Chakrabarti
 
.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
Katy Slemon
 
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
Danilo Bordini
 
.Net framework
.Net framework.Net framework
.Net frameworkArun Pal
 
Raffaele Rialdi
Raffaele RialdiRaffaele Rialdi
Raffaele Rialdi
CodeFest
 
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
WrapPixel
 
Asp dot net
Asp dot netAsp dot net
Asp dot net
husnara mohammad
 
01 intro to programming in .net
01   intro to programming in .net01   intro to programming in .net
01 intro to programming in .netFelisha Hosein
 
Introduction to programming world
Introduction to programming worldIntroduction to programming world
Introduction to programming world
Jaskaran Singh
 
Webhouse
WebhouseWebhouse
.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
Karel Zikmund
 

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

.Net platform .Net core fundamentals
.Net platform .Net core  fundamentals.Net platform .Net core  fundamentals
.Net platform .Net core fundamentals
 
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
 

More from Hossein Zahed

Machine Learning with ML.NET
Machine Learning with ML.NETMachine Learning with ML.NET
Machine Learning with ML.NET
Hossein Zahed
 
8 Database Paradigms
8 Database Paradigms8 Database Paradigms
8 Database Paradigms
Hossein Zahed
 
مبانی رایانش ابری
مبانی رایانش ابریمبانی رایانش ابری
مبانی رایانش ابری
Hossein Zahed
 
HTTPS نحوه کارکرد پروتکل
HTTPS نحوه کارکرد پروتکلHTTPS نحوه کارکرد پروتکل
HTTPS نحوه کارکرد پروتکل
Hossein Zahed
 
مبانی چابکی و اسکرام
مبانی چابکی و اسکراممبانی چابکی و اسکرام
مبانی چابکی و اسکرام
Hossein Zahed
 
فرآیند توسعه نرم افزار
فرآیند توسعه نرم افزارفرآیند توسعه نرم افزار
فرآیند توسعه نرم افزار
Hossein Zahed
 
مبانی اینترنت
مبانی اینترنتمبانی اینترنت
مبانی اینترنت
Hossein Zahed
 
تخته سیاه آنلاین
تخته سیاه آنلاینتخته سیاه آنلاین
تخته سیاه آنلاین
Hossein Zahed
 
مفاهیم اساسی برنامه نویسی کامپیوتر
مفاهیم اساسی برنامه نویسی کامپیوترمفاهیم اساسی برنامه نویسی کامپیوتر
مفاهیم اساسی برنامه نویسی کامپیوتر
Hossein Zahed
 
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
Hossein Zahed
 
SEO Fundamentals
SEO FundamentalsSEO Fundamentals
SEO Fundamentals
Hossein Zahed
 
Big Data World
Big Data WorldBig Data World
Big Data World
Hossein Zahed
 
CSharp Language Overview Part 1
CSharp Language Overview Part 1CSharp Language Overview Part 1
CSharp Language Overview Part 1
Hossein Zahed
 
Network Essentials v2.0
Network Essentials v2.0Network Essentials v2.0
Network Essentials v2.0Hossein Zahed
 
Microsoft SQL Server 2008
Microsoft SQL Server 2008Microsoft SQL Server 2008
Microsoft SQL Server 2008Hossein Zahed
 
.Net Framework Basics
.Net Framework Basics.Net Framework Basics
.Net Framework BasicsHossein 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

Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
informapgpstrackings
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
rickgrimesss22
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
Matt Welsh
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Globus
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Globus
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
Globus
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Globus
 
May Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdfMay Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdf
Adele Miller
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
Globus
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Natan Silnitsky
 
2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx
Georgi Kodinov
 
A Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of PassageA Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of Passage
Philip Schwarz
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
Juraj Vysvader
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
vrstrong314
 
Corporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMSCorporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMS
Tendenci - The Open Source AMS (Association Management Software)
 

Recently uploaded (20)

Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
Field Employee Tracking System| MiTrack App| Best Employee Tracking Solution|...
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...Developing Distributed High-performance Computing Capabilities of an Open Sci...
Developing Distributed High-performance Computing Capabilities of an Open Sci...
 
May Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdfMay Marketo Masterclass, London MUG May 22 2024.pdf
May Marketo Masterclass, London MUG May 22 2024.pdf
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
 
2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx2024 RoOUG Security model for the cloud.pptx
2024 RoOUG Security model for the cloud.pptx
 
A Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of PassageA Sighting of filterA in Typelevel Rite of Passage
A Sighting of filterA in Typelevel Rite of Passage
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
 
Prosigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology SolutionsProsigns: Transforming Business with Tailored Technology Solutions
Prosigns: Transforming Business with Tailored Technology Solutions
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
Corporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMSCorporate Management | Session 3 of 3 | Tendenci AMS
Corporate Management | Session 3 of 3 | Tendenci AMS
 

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