SlideShare a Scribd company logo
Intro into new Features
What's New in .Net 4.5
Improvements to
  • WeakReferences

  • ArraySegment

  • Streams

  • ReadOnlyDictionary

  • Compression

  • Bigger than 2GB Objects
Background Server GC
  • Shorter pauses when doing Gen2 Collections



(Server GC) Scalable Marking for full blocking GCs


Large Object Heap Allocation Improvements
  • Better use of free space on LOH

  • Balancing the LOH allocations across processors (Server only)

  • Up to 2GB Large Array on 32bit and more then 2GB on 64bit
    Systems
public class SomeClass {

    public void DownloadStringAsync() {

        WebClient wc1 = new WebClient();

        wc1.DownloadStringCompleted += (sender, e) => {
            string res = e.Result;
        };

        wc1.DownloadStringAsync(new Uri("http://www.SomeWeb.../"));
    }
}
public class SomeClass {

    public async void DownloadStringAsync() {

        WebClient web = new WebClient();

        string res = await web.DownloadStringAsync("www.SomeWeb...");
    }
}
Two keywords for asynchronous programming:
The method signature includes an Async or async
modifier.

The name of an async method, by convention, ends
with an "Async" suffix.

The return type is one of the following types:
  Task<TResult> if the method has a return statement in
   which the operand has type TResult.
  Task if the method has no return statement or has a
   return statement with no operand.
  Void (a Sub in Visual Basic) if its an async event handler.
The method usually includes at least one await
expression, which marks a point where the
method can't continue until the awaited
asynchronous operation is complete.
In the meantime, the method is suspended, and
control returns to the method's caller.
•   These features add a task-based model for
    performing asynchronous operations. To use
    this new model, use the asynchronous methods
    in the I/O classes.

•   Asynchronous operations enable you to perform
    resource-intensive I/O operations without
    blocking the main thread.

•   This performance consideration is particularly
    important in a Windows Metro style app or
    desktop app where a time-consuming stream
    operation can block the UI thread and make your
    app appear as if it is not working.
async void DisplayUserInfo(string userName) {
                            var image = FetchUserPictureAsync(userName);
                            var address = FetchUserAddressAsync(userName);
                            var phone = FetchUserPhoneAsync(userName);
                            await Task.WhenAll(image, address, phone);
                            DisplayUser(image.Result, address.Result,
                                        phone.Result);
                        }
   Client UI Code
     • Easy to write client UI code that doesn’t block
   Business logic
     • Easy to write code that fetches data from multiple sources in
       parallel
   Server code
     • Better scalability – no need to have a thread per request.
   New APIs in BCL, ASP.NET, ADO.NET, WCF, XML, WPF
 Combinators
 Task.WhenAll, Task.WhenAny
 Timer   integration
 Task.Delay(TimeSpan),
 CancellationTokenSource.CancelAfter(TimeSpan)
 Task   scheduling
 ConcurrentExclusiveSchedulerPair
 Fine-grained   control
 DenyChildAttach, HideScheduler, LazyCancellation,
 EnumerablePartitionerOptions
 ThreadLocal<T>.Values


 PERFORMANCE         (“it’s just faster”)
The Managed Extensibility Framework (MEF)
provides the following new features:
  Support for generic types.
  Convention-based programming model that enables to
   create parts based on naming conventions rather than
   attributes.
  Multiple scopes.
  A subset of MEF that you can use when you create Metro
   style apps. This subset is available as a downloadable
   package from the NuGet Gallery.
   All your objects are MEF now
    • Generics
    • POCO
    • Explicit Wiring (wire specific MEF parts the way YOU
      want)


   MEF problems are easy to diagnose
    • Break on First Chance Exceptions
    • Visualize the exception
    • Fix your problem!
Resource File Generator (Resgen.exe)
 - enables you to create a .resw file for use in
Windows apps from a .resources file embedded in a
.NET Framework assembly.

Managed Profile Guided Optimization
(Mpgo.exe)
 - enables you to improve application startup time,
memory utilization (working set size), and
throughput by optimizing native image assemblies.
The command-line tool generates profile data for
native image application assemblies.
Improved performance, increased control,
improved support for asynchronous
programming, a new dataflow library, and
improved support for parallel debugging and
performance analysis.
The performance of TPL, such that just by
upgrading to .NET 4, important workloads will
just get faster, with no code changes or even
recompilation required.


More queries in .NET 4.5 will now automatically
run in parallel. A prime example of this is a
ASP .NET 4.5 includes the following new
features:
  • Support for new HTML5 form types.

  • Support for model binders in Web Forms. These let you
   bind data controls directly to data-access methods, and
   automatically convert user input to and from .NET
   Framework data types.
  • Support for unobtrusive JavaScript in client-side
   validation scripts.
  • Improved handling of client script through bundling and
   minification for improved page performance.
  • Integrated encoding routines from the AntiXSS library
• Support for WebSockets protocol.

• Support for reading and writing HTTP
 requests and responses asynchronously.

• Support for asynchronous modules and
 handlers.

• Support for content distribution network
 (CDN) fallback in the ScriptManager
 control.
The ASP.NET Web API takes the best features from WCF Web
API and merges them with the best features from MVC.

The integrated stack supports the following
features:











From 353,5 KB
           + multiple call
           overhead


+84% improvement
           To 59.83 KB
           + one call
           overhead
 Two  ways to run ASP.NET
  • Start app, keep it running
  • Start when a request comes in (e.g. Hosters)

 35% faster cold start
  • Multi-core JIT
  • Windows Server 8 pre-fetch option

 Working   set improvements
 Even   more support for SQL Server 2008  2012
 • Null bit compression for sparse columns

 Support   for new Denali features
 • Support for High Availability
    Just set the correct keyword in the connection string
    Fast Failover across multiple subnets
 • Support for new Spatial Types (GIS)

 More   good stuff
 • Passwords encrypted in memory
 • Async support
•   Spatial data support

•   Table valued functions

•   Stored procs with multiple result sets

•   Automatic compiled LINQ queries

•   Query optimization
•   Runs on it’s own cadence – so more features &
    improvements more often

•   Enum support throughout

•   Support for localdb

•   Designer improvements!
    (Multiple diagrams per model)
 Improve     Developer Productivity
  • Enums
  • Migrations
  • Batch Sproc Import
  • Designer highlighting and coloring



 Enable    SQL Server and Azure Features
  • Spatial (Geometry and Geography)
  • Table-valued functions
  • Sprocs with multiple result sets


 Increase     Enterprise Readiness
  • Multiple diagrams per model
  • TPT query optimizations
  • Automatic compiled LINQ queries
The .NET Framework 4.5 provides a new programming
interface for HTTP applications.
New System.Net.Http and System.Net.Http.Headers namespa
ces.
A new programming interface for accepting and interacting
with a WebSocket connection by using the
existing HttpListener and related classes
The .NET Framework 4.5 includes the following networking
improvements:
•   RFC-compliant URI support. For more information,
    see Uri and related classes.
•   Support for Internationalized Domain Name (IDN) parsing.
   Simplified Generated Configuration Files
    • New Transport Default Values
    • XmlDictionaryReaderQuotas

   Contract-First Development
   WCF Configuration Validation
    • XML Editor Tooltips
    • Configuration Intellisense

   ASP.NET Compatibility Mode Default Changed
   Simplifying Exposing an Endpoint Over HTTPS with
    IIS
   Generating a Single WSDL Document
   Streaming Improvements
    • Async Streaming
 WebSocket Support
 ChannelFactory Caching

 Scalable   modern communication stack
  • Interoperable UDP multi-cast channel
  • TCP support for high-density scenarios (partial
    trust)
  • Async
  • Improved streaming support

 Continued   commitment to simplicity
  • Further config simplification, making WCF
    throttles/quotas smarter & work for you by default!
  • Better manageability via rich ETW & e2e tracing
   The New Ribbon Controls
   Validating data asynchronously and synchronously
   Data Binding Changes
    • Improved performance when displaying large sets of
        grouped data
    •   Delay property binding
    •   Accessing collections on non-UI Threads
    •   Binding to static properties
    •   And more!
   Markup extensions for events
   ItemsControl Improvements
   New features for the VirtualizingPanel
   Improved Weak Reference Mechanism
OOM
at 7
min




       24.5s
               2.3s
   .NET 4.5 is an in-place update that helps us make
    sure it is highly compatible.
   .NET 4.5 makes it easy and natural to write Metro
    style apps using C# and VB
   .NET 4.5 makes your apps run faster: Faster ASP.NET
    startup, fewer pauses due to Server GCs, and great
    support for Asynchronous programming
   .NET 4.5 gives you easy, modern access to your data,
    with support for Entity Framework Code First, and
    recent SQL Server features, and WebSockets
   .NET 4.5 addresses the top developer requests in
    WPF, Workflow, BCL, MEF, and ASP.NET
What's New in .Net 4.5

More Related Content

PPTX
What is new in .NET 4.5
PPT
Migrating To Visual Studio 2008 & .Net Framework 3.5
PPTX
.NET Framework 4.0 – Changes & Benefits
PPT
ASP.NET 01 - Introduction
PPT
Introduction to ,NET Framework
PPT
DOT Net overview
PPTX
.Net framework
PPT
.NET Framework Overview
What is new in .NET 4.5
Migrating To Visual Studio 2008 & .Net Framework 3.5
.NET Framework 4.0 – Changes & Benefits
ASP.NET 01 - Introduction
Introduction to ,NET Framework
DOT Net overview
.Net framework
.NET Framework Overview

What's hot (20)

PPTX
Evolution of .net frame work
PPTX
Visual Studio 2010 and .NET Framework 4.0 Overview
PPT
Module 1: Introduction to .NET Framework 3.5 (Slides)
PPT
Nakov - .NET Framework Overview - English
PPTX
Net Fundamentals
PPTX
.Net framework
PDF
The how-dare-you-call-me-an-idiot’s guide to the .NET Standard (NDC London 2017)
PPT
Introduction to .Net
PPSX
Life as an asp.net programmer
PPT
Introduction to dot net framework by vaishali sahare [katkar]
PPTX
.Net language support
PPS
dot NET Framework
PPTX
Introduction to vb.net
PPT
Introduction to Visual Studio.NET
PPTX
Overview of .Net Framework
PPT
Dotnet framework
PPSX
An isas presentation on .net framework 2.0 by vikash chandra das
PPTX
Vb6 vs vb.net....(visual basic) presentation
PPT
Working in Visual Studio.Net
Evolution of .net frame work
Visual Studio 2010 and .NET Framework 4.0 Overview
Module 1: Introduction to .NET Framework 3.5 (Slides)
Nakov - .NET Framework Overview - English
Net Fundamentals
.Net framework
The how-dare-you-call-me-an-idiot’s guide to the .NET Standard (NDC London 2017)
Introduction to .Net
Life as an asp.net programmer
Introduction to dot net framework by vaishali sahare [katkar]
.Net language support
dot NET Framework
Introduction to vb.net
Introduction to Visual Studio.NET
Overview of .Net Framework
Dotnet framework
An isas presentation on .net framework 2.0 by vikash chandra das
Vb6 vs vb.net....(visual basic) presentation
Working in Visual Studio.Net
Ad

Similar to What's New in .Net 4.5 (20)

PPTX
Revealing C# 5
PPTX
What’s new in Visual Studio 2012 & .NET 4.5
PPTX
Vb essentials
PPTX
Visual Studio 2010 IDE Enhancements - Alex Mackey, Readify
PPTX
.net Framework
PPTX
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
PPT
A Lap Around Visual Studio 2010
PDF
ASP.NET MVC Workshop for Women in Technology
PPTX
Mini .net conf 2020
PPT
ASPNET Roadmap
PPT
Migration from ASP to ASP.NET
PPT
MSDN Dec2007
PPT
I T Mentors V S2008 Onramp240 V1
PPTX
What’s new in the 4.5
PPTX
Featfures of asp.net
PPSX
What’s New In C# 5.0 - iseltech'13
PPT
Migrating To Visual Studio 2008 & .Net Framework 3.5
PPTX
What's New in .NET 10: A Complete Overview - Ansi ByteCode LLP
PPTX
FEDSPUG April 2014: Visual Studio 2013 for Application Lifecycle Management &...
Revealing C# 5
What’s new in Visual Studio 2012 & .NET 4.5
Vb essentials
Visual Studio 2010 IDE Enhancements - Alex Mackey, Readify
.net Framework
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
A Lap Around Visual Studio 2010
ASP.NET MVC Workshop for Women in Technology
Mini .net conf 2020
ASPNET Roadmap
Migration from ASP to ASP.NET
MSDN Dec2007
I T Mentors V S2008 Onramp240 V1
What’s new in the 4.5
Featfures of asp.net
What’s New In C# 5.0 - iseltech'13
Migrating To Visual Studio 2008 & .Net Framework 3.5
What's New in .NET 10: A Complete Overview - Ansi ByteCode LLP
FEDSPUG April 2014: Visual Studio 2013 for Application Lifecycle Management &...
Ad

Recently uploaded (20)

PDF
Heart disease approach using modified random forest and particle swarm optimi...
PPTX
A Presentation on Artificial Intelligence
PDF
Approach and Philosophy of On baking technology
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
Encapsulation theory and applications.pdf
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
Tartificialntelligence_presentation.pptx
PDF
A comparative study of natural language inference in Swahili using monolingua...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Heart disease approach using modified random forest and particle swarm optimi...
A Presentation on Artificial Intelligence
Approach and Philosophy of On baking technology
Reach Out and Touch Someone: Haptics and Empathic Computing
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Per capita expenditure prediction using model stacking based on satellite ima...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
cloud_computing_Infrastucture_as_cloud_p
Encapsulation theory and applications.pdf
Univ-Connecticut-ChatGPT-Presentaion.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Tartificialntelligence_presentation.pptx
A comparative study of natural language inference in Swahili using monolingua...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
NewMind AI Weekly Chronicles - August'25-Week II
Assigned Numbers - 2025 - Bluetooth® Document
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
SOPHOS-XG Firewall Administrator PPT.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
gpt5_lecture_notes_comprehensive_20250812015547.pdf

What's New in .Net 4.5

  • 1. Intro into new Features
  • 3. Improvements to • WeakReferences • ArraySegment • Streams • ReadOnlyDictionary • Compression • Bigger than 2GB Objects
  • 4. Background Server GC • Shorter pauses when doing Gen2 Collections (Server GC) Scalable Marking for full blocking GCs Large Object Heap Allocation Improvements • Better use of free space on LOH • Balancing the LOH allocations across processors (Server only) • Up to 2GB Large Array on 32bit and more then 2GB on 64bit Systems
  • 5. public class SomeClass { public void DownloadStringAsync() { WebClient wc1 = new WebClient(); wc1.DownloadStringCompleted += (sender, e) => { string res = e.Result; }; wc1.DownloadStringAsync(new Uri("http://www.SomeWeb.../")); } }
  • 6. public class SomeClass { public async void DownloadStringAsync() { WebClient web = new WebClient(); string res = await web.DownloadStringAsync("www.SomeWeb..."); } }
  • 7. Two keywords for asynchronous programming: The method signature includes an Async or async modifier. The name of an async method, by convention, ends with an "Async" suffix. The return type is one of the following types:  Task<TResult> if the method has a return statement in which the operand has type TResult.  Task if the method has no return statement or has a return statement with no operand.  Void (a Sub in Visual Basic) if its an async event handler.
  • 8. The method usually includes at least one await expression, which marks a point where the method can't continue until the awaited asynchronous operation is complete. In the meantime, the method is suspended, and control returns to the method's caller.
  • 9. These features add a task-based model for performing asynchronous operations. To use this new model, use the asynchronous methods in the I/O classes. • Asynchronous operations enable you to perform resource-intensive I/O operations without blocking the main thread. • This performance consideration is particularly important in a Windows Metro style app or desktop app where a time-consuming stream operation can block the UI thread and make your app appear as if it is not working.
  • 10. async void DisplayUserInfo(string userName) { var image = FetchUserPictureAsync(userName); var address = FetchUserAddressAsync(userName); var phone = FetchUserPhoneAsync(userName); await Task.WhenAll(image, address, phone); DisplayUser(image.Result, address.Result, phone.Result); }  Client UI Code • Easy to write client UI code that doesn’t block  Business logic • Easy to write code that fetches data from multiple sources in parallel  Server code • Better scalability – no need to have a thread per request.  New APIs in BCL, ASP.NET, ADO.NET, WCF, XML, WPF
  • 11.  Combinators Task.WhenAll, Task.WhenAny  Timer integration Task.Delay(TimeSpan), CancellationTokenSource.CancelAfter(TimeSpan)  Task scheduling ConcurrentExclusiveSchedulerPair  Fine-grained control DenyChildAttach, HideScheduler, LazyCancellation, EnumerablePartitionerOptions  ThreadLocal<T>.Values  PERFORMANCE (“it’s just faster”)
  • 12. The Managed Extensibility Framework (MEF) provides the following new features:  Support for generic types.  Convention-based programming model that enables to create parts based on naming conventions rather than attributes.  Multiple scopes.  A subset of MEF that you can use when you create Metro style apps. This subset is available as a downloadable package from the NuGet Gallery.
  • 13. All your objects are MEF now • Generics • POCO • Explicit Wiring (wire specific MEF parts the way YOU want)  MEF problems are easy to diagnose • Break on First Chance Exceptions • Visualize the exception • Fix your problem!
  • 14. Resource File Generator (Resgen.exe) - enables you to create a .resw file for use in Windows apps from a .resources file embedded in a .NET Framework assembly. Managed Profile Guided Optimization (Mpgo.exe) - enables you to improve application startup time, memory utilization (working set size), and throughput by optimizing native image assemblies. The command-line tool generates profile data for native image application assemblies.
  • 15. Improved performance, increased control, improved support for asynchronous programming, a new dataflow library, and improved support for parallel debugging and performance analysis. The performance of TPL, such that just by upgrading to .NET 4, important workloads will just get faster, with no code changes or even recompilation required. More queries in .NET 4.5 will now automatically run in parallel. A prime example of this is a
  • 16. ASP .NET 4.5 includes the following new features: • Support for new HTML5 form types. • Support for model binders in Web Forms. These let you bind data controls directly to data-access methods, and automatically convert user input to and from .NET Framework data types. • Support for unobtrusive JavaScript in client-side validation scripts. • Improved handling of client script through bundling and minification for improved page performance. • Integrated encoding routines from the AntiXSS library
  • 17. • Support for WebSockets protocol. • Support for reading and writing HTTP requests and responses asynchronously. • Support for asynchronous modules and handlers. • Support for content distribution network (CDN) fallback in the ScriptManager control.
  • 18. The ASP.NET Web API takes the best features from WCF Web API and merges them with the best features from MVC. The integrated stack supports the following features:          
  • 19. From 353,5 KB + multiple call overhead +84% improvement To 59.83 KB + one call overhead
  • 20.  Two ways to run ASP.NET • Start app, keep it running • Start when a request comes in (e.g. Hosters)  35% faster cold start • Multi-core JIT • Windows Server 8 pre-fetch option  Working set improvements
  • 21.  Even more support for SQL Server 2008 2012 • Null bit compression for sparse columns  Support for new Denali features • Support for High Availability  Just set the correct keyword in the connection string  Fast Failover across multiple subnets • Support for new Spatial Types (GIS)  More good stuff • Passwords encrypted in memory • Async support
  • 22. Spatial data support • Table valued functions • Stored procs with multiple result sets • Automatic compiled LINQ queries • Query optimization
  • 23. Runs on it’s own cadence – so more features & improvements more often • Enum support throughout • Support for localdb • Designer improvements! (Multiple diagrams per model)
  • 24.  Improve Developer Productivity • Enums • Migrations • Batch Sproc Import • Designer highlighting and coloring  Enable SQL Server and Azure Features • Spatial (Geometry and Geography) • Table-valued functions • Sprocs with multiple result sets  Increase Enterprise Readiness • Multiple diagrams per model • TPT query optimizations • Automatic compiled LINQ queries
  • 25. The .NET Framework 4.5 provides a new programming interface for HTTP applications. New System.Net.Http and System.Net.Http.Headers namespa ces. A new programming interface for accepting and interacting with a WebSocket connection by using the existing HttpListener and related classes The .NET Framework 4.5 includes the following networking improvements: • RFC-compliant URI support. For more information, see Uri and related classes. • Support for Internationalized Domain Name (IDN) parsing.
  • 26. Simplified Generated Configuration Files • New Transport Default Values • XmlDictionaryReaderQuotas  Contract-First Development  WCF Configuration Validation • XML Editor Tooltips • Configuration Intellisense  ASP.NET Compatibility Mode Default Changed  Simplifying Exposing an Endpoint Over HTTPS with IIS  Generating a Single WSDL Document  Streaming Improvements • Async Streaming
  • 27.  WebSocket Support  ChannelFactory Caching  Scalable modern communication stack • Interoperable UDP multi-cast channel • TCP support for high-density scenarios (partial trust) • Async • Improved streaming support  Continued commitment to simplicity • Further config simplification, making WCF throttles/quotas smarter & work for you by default! • Better manageability via rich ETW & e2e tracing
  • 28. The New Ribbon Controls  Validating data asynchronously and synchronously  Data Binding Changes • Improved performance when displaying large sets of grouped data • Delay property binding • Accessing collections on non-UI Threads • Binding to static properties • And more!  Markup extensions for events  ItemsControl Improvements  New features for the VirtualizingPanel  Improved Weak Reference Mechanism
  • 29. OOM at 7 min 24.5s 2.3s
  • 30. .NET 4.5 is an in-place update that helps us make sure it is highly compatible.  .NET 4.5 makes it easy and natural to write Metro style apps using C# and VB  .NET 4.5 makes your apps run faster: Faster ASP.NET startup, fewer pauses due to Server GCs, and great support for Asynchronous programming  .NET 4.5 gives you easy, modern access to your data, with support for Entity Framework Code First, and recent SQL Server features, and WebSockets  .NET 4.5 addresses the top developer requests in WPF, Workflow, BCL, MEF, and ASP.NET