Showing category results for .NET

Oct 19, 2009
Post comments count0
Post likes count0

Visual Studio 2010 – Beta 2 : Announcements

CLR Team

·         <![endif]>Visual Studio 2010 and .NET Framework 4 Beta 2 availability – The Visual Studio 2010 and .NET Framework 4 Beta 2 will be available to MSDN subscribers on Monday, October 19th, with general availability on October 21st.![if>     · &nb...

.NET
Oct 2, 2009
Post comments count0
Post likes count0

Five Myths about Managed Code

CLR Team

My name is Immo Landwerth and I was a Program Manager intern this year in the CLR team. In this blog post I am not going to showcase any of the fantastic features that will ship with .NET 4.0 – my colleagues in the CLR team know them much better and already did a fabulous job discussing them here, over there and on Channel 9. Instead I want ...

.NET
Oct 2, 2009
Post comments count0
Post likes count0

Five Myths about Managed Code

CLR Team

My name is Immo Landwerth and I was a Program Manager intern this year in the CLR team. In this blog post I am not going to showcase any of the fantastic features that will ship with .NET 4.0 – my colleagues in the CLR team know them much better and already did a fabulous job discussing them here, over there and on Channel 9. Instead I want ...

.NET
Oct 2, 2009
Post comments count0
Post likes count0

Five Myths about Managed Code

CLR Team

My name is Immo Landwerth and I was a Program Manager intern this year in the CLR team. In this blog post I am not going to showcase any of the fantastic features that will ship with .NET 4.0 – my colleagues in the CLR team know them much better and already did a fabulous job discussing them here, over there and on Channel 9. Instead I want ...

.NET
Oct 1, 2009
Post comments count0
Post likes count0

CLR Inside Out – Profiling the .NET Garbage-Collected Heap

CLR Team

  The new installment of the “CLR Inside Out” column in MSDN Magazine is now available on line.  This month we have an article from Subramanian Ramaswamy and Vance Morrison on Profiling the .NET Garbage-Collected Heap.  This article provides instructions on using the CLR Profiler for memory investigations of the .NET G...

.NET
Sep 22, 2009
Post comments count0
Post likes count0

CLR Inside Out – What’s New in the .NET Framework 4 Base Class Library

CLR Team

  Sorry for the delay in the post, but in case you haven’t seen it yet, the new installment of the “CLR Inside Out” column in MSDN magazine is available on line.  This month we have an article from Justin Van Patten on What’s New in the .NET Framework 4 Base Class Library, covering mainly the new features that wer...

.NET
Aug 27, 2009
Post comments count0
Post likes count0

IL Stub Diagnostic Tool

CLR Team

  The IL Stub Diagnostic Tool enables real-time inspection of the contents of IL stubs. Developers now have a powerful tool to troubleshoot issues in interop marshalling, Introduction Jesse posted a great blog talking about the concept, history, and improvements of Intermediate Language (IL) stubs for CLR v4. He mentions The remainder of this...

.NET
Aug 25, 2009
Post comments count0
Post likes count0

The good and the bad of exception filters

CLR Team

Every so often we get asked questions about the CLR’s support for exception filters. Why do some languages support them and others do not? Is it a good idea to add them to my new language? When should I use a filter vs. catch/rethrow? Etc. I’ll try to answer some of these questions for you here, and while I won’t go into all of th...

.NET
Aug 10, 2009
Post comments count0
Post likes count0

Improvements to Interop Marshaling in V4: IL Stubs Everywhere

CLR Team

  When the CLR needs to transition between managed and native code – usually because of P\Invoke or COM interop – we need to generate marshaling stubs (little chunks of code) to handle that specific call and transform the data from managed to native format and back again. . These stubs are little pieces of code that are usually ge...

.NET