Upcoming CLR stories

CLR 4.5: Managed Profile Guided Optimization (MPGO)(eknowledger.wordpress.com)

submitted by eknowledgereknowledger(156) 28 days, 13 hours ago

The Managed Profile Guided Optimization (MPGO) technology can improve the startup and working set (memory usage) of managed applications by optimizing the layout of precompiled native images.By organize the layout of your native image so most frequently called data are located together in a minimal number of disk pages in order to optimize each request for a disk page of image data to include a higher density of useful image data for the running program which in return will reduce the number of page requests from disk. if you think more about it, mostly it will be useful to machines with mechanical disks but if you have already moved to the Solid State Drive Nirvana the expected performance improvement will probably be unnoticeable. read more...

add a comment |category: |Views: 3

tags: another

.NET 4.0 Runtime Superceded by .NET 4.5!(blogs.kungfucoder.com)

submitted by JohnBergmanJohnBergman(20) 2 months, 24 days ago

...Much to my surprise, there was not a .NET 4.5 Framework Directory! After some digging, I discovered that ".NET 4.5 Supercedes .NET 4.0"! This means that the new Runtime replaces the 4.0 runtime. read more...

add a comment |category: |Views: 7

tags: another

Memory in .NET - (Vagueness Of .NET Memory Management)(www.dotnetfreaks.net)

submitted by ajanderajander(9) 5 months, 10 days ago

"Variables" are simply storage locations for data becuase it is really hard to pragramme against the memory address. It means, a variable is just an association between a name and memory slot. You can place data into them and retrieve their contents as part of a C# expression. The size of that slot, and the interpretation of the value is controlled through "Types" - and this is where the difference between value types and reference types comes in..... read more...

add a comment |category: |Views: 14

tags: another

Windows 8: What's New? - Arik Poznanski's Blog(blogs.microsoft.co.il)

submitted by arikparikp(1204) 8 months, 6 days ago

Got back from Build conference. Since I expect many people will ask me "So, what's new?" and since the answer is rather complex, I figured I should try to write a post about it, so here goes… read more...

add a comment |category: |Views: 2

tags: another

String-Interning-in-net.aspx(www.codemine.net)

submitted by skpananghatskpananghat(184) 9 months, 21 days ago

We all know that the way .net handles a string is not optimal and uses up lot of memory, thought there are reason to do like this. But if we have more string objects or comparison inside our assembly then in this case surely it is going to be a performance hit. But here what really happens is framework itself take cares at least some part of it using the concept of Sting Interning. So what is String interning in Microsoft .net. How does it helps the C# code Execution.. It seems that there is an internal hashtable maintained with the actual string value and it’s reference to managed heap. And two methods help us to handle this hash table This is the “Intern” and “IsInterned” methods which is part of string manipulation class. read more...

add a comment |category: |Views: 1

tags: another

SPT - x86 Release - A WinDBG extension for debugging .NET applications(www.steveniemitz.com)

submitted by steveniemitzsteveniemitz(15) 11 months ago

SPT is a WinDBG extension for debugging .NET applications. Now available for x86 debugging. read more...

add a comment |category: |Views: 6

tags: another

SPT - A WinDBG extension for debugging .NET applications(www.steveniemitz.com)

submitted by steveniemitzsteveniemitz(15) 11 months, 11 days ago

A new WinDBG extension containing a lot of useful features for debugging .NET 4 applications. read more...

add a comment |category: |Views: 5

tags: another

Checking for anonymous types(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 1 year ago

Because I blogged about anonymous types last month, I thought following extension method would also make an interesting post. read more...

add a comment |category: |Views: 3

tags: another

Windows Dedicated Servers vs. Virtual Private Servers(www.epicwinhosting.com)

submitted by bsenoffbsenoff(1583) 15 days, 15 hours ago

Our friends of Epic Win Hosting spell out all of the differences you need to know about. read more...

add a comment |category: |Views: 201

tags: another

.NET Character Classification Tables(www.blackbeltcoder.com)

submitted by scwebgroupscwebgroup(332) 1 year, 1 month ago

Convenient tables that show character classifications according to the Char methods such as IsControl, IsWhiteSpace, etc. read more...

add a comment |category: |Views: 3

tags: another

WPF, Silverlight, WP7 and the Async CTP(www.primordialcode.com)

submitted by GuardianGuardian(1104) 1 year, 1 month ago

Asynchronous programming with the Async CTP on WPF, Silverlight and WP7 read more...

add a comment |category: |Views: 5

tags: another

CLI Built-In Value Types in Managed Code(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 1 year, 1 month ago

The common language infrastructure has many built-in value types with special encoding directly supported by the virtual execution system. Many are frequently used in common managed languages such as C#. The following chart will help you determine the size of each. read more...

add a comment |category: |Views: 4

tags: another

Introducing .Net Perf Timing. A FREE timing profiler for .Net(www.dotnetperf.com)

submitted by dotnetperfdotnetperf(5) 1 year, 2 months ago

Our passion is building amazing, easy to use software that enables you to get done with you work quicker. What better way to do that than to build a timing profiler for .Net. Now you can track down the root cause of your performance issues without having to place a bunch of timers in our code. read more...

add a comment |category: |Views: 6

tags: another

What is an Assembly?? What are the Advantages of an Assembly ??(deliciousdotnet.blogspot.com)

submitted by anilmca09anilmca09(45) 1 year, 2 months ago

hi read more...

add a comment |category: |Views: 7

tags: another

How to set a thread's processor affinity in .NET(www.rmulder.com)

submitted by remcomulderremcomulder(15) 1 year, 3 months ago

Efficient handling of concurrent execution is becoming more and more important in modern programming. This article explains a method that can be used to hard-lock an individual thread to run on a specific CPU core - giving tighter control over concurrency where performance is critical. read more...

add a comment |category: |Views: 7

tags: another

All about Corrputed State Exceptions (dotnetslackers.com)

submitted by hima_.nethima_.net(440) 1 year, 4 months ago

In this article Hima Bindu Vejella gives a detailed explanation of the Corrupted State Exceptions introduced in the .NET Framework 4.0 read more...

add a comment |category: |Views: 6

tags: another

SingleInstance(Of T) Class for Windows Phone 7(www.nikosbaxevanis.com)

submitted by baxevanisbaxevanis(30) 1 year, 5 months ago

While in the desktop CLR there is the Lazy(Of T) Class, when working on WP7 this class does not exist (at least not at the time of this writing). read more...

add a comment |category: |Views: 1

tags: another