Wely Microsoft MVP, Visual C#

Slides:



Advertisements
Similar presentations
Ofir Aspis 1/2010 VS 2010 Targets High Level - IDE New Features VS 2010 As Editor and Platform Demo Editor features Extending.
Advertisements

Unit 1: Overview of the Microsoft.NET Platform
.NET 3.5 SP1 New features Enhancements Visual Studio 2008 SP1 New features Enhancements Additional features/enhancements.
C#/.NET 5/4/ Ian Cooper
Chalermvong Vijitpiyakul Microsoft MVP Greatfriends.biz Community Lead GF 30 August 2009.
Collections Create and organize your own privet and public collections.
ISYS 512 Business Application Design and Development with.Net David Chao.
ISYS 512 Business Application Design and Development with.Net David Chao.
Visual Studio 2008 and ASP.NET 3.5 Mike Ormond Developer & Platform Group Microsoft Ltd
Daniel Moth  Parallel Computing Platform Microsoft Corporation TL26.
What’s new in ASP.NET 3.5? Mike Ormond Developer & Platform Group Microsoft Ltd
.NET Framework 4 and Visual Studio 2010 Pandurang NayakHarish Ranganathan Client Platform EvangelistWeb Platform Evangelist Microsoft Corporation IndiaMicrosoft.
迎接 ASP.NET 4.0 新世代新方向 奚江華 作家/微軟講師/技術顧問. 2 Agenda 1. What's new in VS NET Framework ASP.NET 4.0.
.NET framework’s Versions .NET Framework Version Microsoft started development on the.NET Framework in the late 1990s originally under the name of Next.
Visual C# Tamer Öz Microsoft MVP – Visual C# Editor in Chief – Yazgelistir.com Tamer Öz Microsoft MVP – Visual C# Editor in Chief – Yazgelistir.com
Six.NET Framework 3.5 MCTS 1. Windows Forms Applications 2. ASP.NET Applications 3. Windows Communication Foundation Applications 4. Windows Presentation.
Introduction to VB.Net ITE-370. What is.NET? A brand of Microsoft technologies A platform for creating distributed Web applications A combination of new.
Developer Day Was ist neu in.NET 4.5? Ken Casada Technical Evangelist, Microsoft Switzerland
Online Job Portal with Exam
.NET 3.0, 3.5, 4.0 WCF, WPF, WF, CardSpace, LINQ, Task Parallel.
Introduction to .NET Rui Ye.
Chapter 1 Dynamic Web Page Design Y. Chen, Ph.D. ::.NET Introduction ::
CS360/CS580H GUI & Windows Programming. Outline Win32/Windows API & SDK Visual Studio MFC – Microsoft Foundation Classes C# &.NET – concepts Windows Forms.
Webinar presented by Erick Polsky 10/2/2012. What is.Net? Combines… Language Independence Memory Management Database Access Class Libraries Operating.
What’s New In Visual Studio 2010 Denys Kholod Technology Expert Hmarasoft.com.
ASP.NET  ASP.NET is a web development platform, which provides a programming model, a comprehensive software infrastructure and various services required.
Microsoft Confidential ASP.NET Broadest reach Most mature dev platform Silverlight Broad reach Rich, Interactive UI WPF Richest, Interactive UI.
Parallel Extensions A glimpse into the parallel universe By Eric De Carufel Microsoft.NET Solution Architect at Orckestra
1 Hammad Khan. COURSE CONTENTS.NET Framework And C# SQL Server 2008 ADO.NET LINQ ASP.NET Dynamics Data ASP.NET MVC framework 2 Advance C# Concepts Windows.
Lap Around Visual Studio 2008 &.NET 3.5 Enhancements.
CIS 451: ASP.NET Concepts Dr. Ralph D. Westfall January, 2009.
About Me Microsoft MVP Intel Blogger TechEd Israel, TechEd Europe Expert C++ Book
Introduction to VB.Net. What is.NET? A brand of Microsoft technologies A platform for creating distributed Web applications A combination of new and updated.
 Joshua Goodman Group Program Manager Microsoft Corporation.
Jeremy Thake Technical Product Building cross-platform apps that integrate with O365 API’s using Xamarin in Visual Studio.
Ahmed Salijee Developer Advisor
Scott Hanselman Principal Program Manager Microsoft DTL303.
Visual Studio 2010 and.NET Framework 4 Training Workshop.
ISYS 512 Business Application Design and Development with.Net David Chao.
LINQ Language Integrated Query LINQ1. LINQ: Why and what? Problem Many data sources: Relational databases, XML, in-memory data structures, objects, etc.
Lap Around the.NET Framework 4 NameTitleCompany. A Look Back….NET 1.0.NET 1.1.NET NET CTP CLR 1.0 CLR 1.1 CLR 2.0 CLR.
What was new in VS Studio 2008 A bird eye view from the height of ft By: Shahzad Sarwar Software Architect Comsoft computer consultants.
Building Web Applications using the latest ASP.NET technologies Max Déboli Director de Desarrollo Microsoft Azure MVP Lagash
The Jukebox is a.NET web application that plays streaming music files to it’s clients according to their favorites musical genres. Clients can rate the.
M ICROSOFT.NET Kyle Adamski 10/15/2012. Road Map What is.NET? Common Language Runtime (CLR) Language Integrate Queries (LINQ).NET Pros.NET Cons Sources.
Hartelijk welkom VB Event 26 september 2012 ‘Visual Studio 2012 voor de VB.NETWEB developer’ Alex Thissen – Achmea.
61% YoY Growth.NET Active Developers (VS 2012+) 40%.NET Core downloads by new developers 62% GitHub contributions from outside of Microsoft (corefx.
Chapter 13 Web Application Infrastructure
Introducing the Microsoft® .NET Framework
Visual Studio 2010 and .NET Framework 4 Name Title
What is .NET.
.NET Framework 2.0 .NET Framework 3.0 .NET Framework 3.5
ASP.NET MVC Introduction
Building Web Applications with Microsoft ASP
Designing Cross Platform Applications on .NET Core
ASP.NET 3.5 Mike Ormond Developer & Platform Group Microsoft Ltd
Visual Studio 2008 Abdul Rahman .Y Microsoft Student Partner.
Module 0: Introduction Chapter 2: Getting Started
Module 1: Getting Started
.NET 3.0, 3.5, 4.0 WCF, WPF, WF, CardSpace, LINQ, Task Parallel
ASP.NET Roadmap Mike Ormond Developer & Platform Group Microsoft Ltd
תכנות אסינכרוני, תקשורת ופיתוח אפליקציות ל-Windows 8
ASP.NET 5 on .NET Core Damian Edwards Principal Program Manager.
Microsoft Connect /1/2018 2:36 AM
Visual Studio “Orcas” & .NET Framework v3.5
Visual Studio 2010 and .NET Framework 4 Training Workshop
.Net Framework Details Imran Rashid CTO at ManiWeber Technologies.
Visual Studio 2008.
CS4540 Special Topics in Web Development Course Overview
CS4540 Special Topics in Web Development Introduction to .NET
Presentation transcript:

Wely Microsoft MVP, Visual C#

3

.NET 1.0.NET 1.1.NET NET CLR 1.0 CLR 1.1 CLR 2.0 CLR 4 SP1

Core Services Base Class Library Common Language Runtime Windows Workflow Foundation Managed Extensibility Framework Data Services Windows Communicatio n Foundation “Velocity” User Interface Windows Presentation Foundation ASP.NET (WebForms, MVC, Dynamic Data) Data Access Entity Framework LINQADO.NET Parallel Extensions WinForms LINQ to SQL Languages Dynamic Language Runtime

Network support and managed services

−Parallel Loop −Parallel LINQ (PLINQ) var q = from p in people where p.Name == queryInfo.Name && p.State == queryInfo.State orderby p.Year ascending select p; var q = from p in people where p.Name == queryInfo.Name && p.State == queryInfo.State orderby p.Year ascending select p; for(int a = 0; a < 16; a++) { Console.WriteLine("TID={0}, i={1}", Thread.CurrentThread.ManagedThreadId, a); SimulateProcessing(); } Parallel.For(0, 16, i => { Console.WriteLine("TID={0}, i={1}", Thread.CurrentThread.ManagedThreadId, a); SimulateProcessing(); ); });

Wely Microsoft MVP, Visual C#