Stories recently tagged with 'CLR'

IDisposable and Thread Safety(www.blackwasp.co.uk)

submitted by rcashrcash(4149) 6 months, 23 days ago

IDisposable is a standard interface in the .NET framework. This article discusses the importance of using it in parallel or multithread programming. read more...

3 comments |category: |Views: 29

tags: another

Is That a WeakReference In Your Gen 2 or Are You Just Glad to See Me?(www.wintellect.com)

submitted by dpetersondpeterson(4397) 6 months, 25 days ago

John Robbins walks us through debugging an application which is not clearing its memory during garbage collection due to WeakReferences. He shows us how to use the tools available to us to trace the memory problem all the way back to the source. read more...

2 comments |category: |Views: 81

tags: another

In Managed Code We Trust: Our Recent Battles With the .Net GC(samsaffron.com)

submitted by dpetersondpeterson(4397) 6 months, 28 days ago

Following up an earlier article this week, Sam Saffron of Stackoverflow expands on how they mitigated performance problems caused by the .Net generational garbage collector. read more...

2 comments |category: |Views: 355

tags: another

Visual Studio 11 .NET Advances(blogs.msdn.com)

submitted by NoldorinNoldorin(829) 6 months, 29 days ago

S. Somasegar discusses several new features and improved functionality available in the .NET 4.5 Developer Preview. Performance among other things has seen a significant boost in .NET 4.5. read more...

3 comments |category: |Views: 100

tags: another

Assault by GC(marcgravell.blogspot.com)

submitted by NoldorinNoldorin(829) 7 months ago

Well-known .NET developer Marc Gravell details how he eliminated some performance problems through clever use of structures, and explains how the CLR garbage collector behaves. read more...

2 comments |category: |Views: 30

tags: another

Memory Allocation Improvements in .Net 4.5(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 7 months, 22 days ago

Surupa Biswas and Maoni Stephens from the Garbage Collection Feature Team at Microsoft share with us some improvements to memory allocation in .Net 4.5, specifically relating to large object allocation. Improvements have been made to how fragmented memory is allocated and used on the heap, as well as balancing large object allocation between heaps when in server GC mode. The latter improvement has seen significant performance gains. read more...

add a comment |category: |Views: 55

tags: another

.NET 4.5 Framework: Backwards compatibility and you(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 7 months, 29 days ago

Brandon Bray gives us some information on backwards compatibility with the upcoming .NET Framework 4.5. This next version of the framework will not be a side-by-side installation like previous releases, but will instead replace version 4 when installed on a users machine. The goal is to be fully backwards compatible with version 4, but the possibility for breakage exists. read more...

add a comment |category: |Views: 48

tags: another

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

submitted by arikparikp(1204) 8 months, 8 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

WinRT Demystified(tirania.org)

submitted by dpetersondpeterson(4397) 8 months, 11 days ago

Miguel de Icaza, of Mono fame, walks us through WinRT and what it means for .Net programmers. read more...

add a comment |category: |Views: 33

tags: another

What's new in .Net Framework 4.5(msdn.microsoft.com)

submitted by dpetersondpeterson(4397) 8 months, 11 days ago

MSDN article on what's new in .Net 4.5 read more...

add a comment |category: |Views: 505

tags: another

What is this thing you call a Type? Part Two(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 8 months, 14 days ago

Eric Lippert brings us part two of his series on what is is to be a Type in .Net. read more...

1 comment |category: |Views: 19

tags: another

What is this thing you call a Type?(blogs.msdn.com)

submitted by dpetersondpeterson(4397) 8 months, 14 days ago

Eric Lippert talks about what a Type in .Net really is. read more...

1 comment |category: |Views: 37

tags: another

Clojure on the CLR(github.com)

submitted by dpetersondpeterson(4397) 9 months, 5 days ago

First came IronPython, then IronRuby, and now Clojure has been ported to run on the CLR. A short intro/comparison to C# is available here: http://odetocode.com/Blogs/scott/archive/2011/08/15/clojure-and-the-clr.aspx read more...

add a comment |category: |Views: 36

tags: another

Get-notified-when-garbage-collections-happens(www.codemine.net)

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

This is a code snippet which i got from Jeffrey Richters blog. This code offers a way to raise notification event when a garbage collection occurs on Generation 0 or Generation 2 object Here is the code for the class: read more...

2 comments |category: |Views: 10

tags: another

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

submitted by skpananghatskpananghat(184) 9 months, 22 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

Top 5 Memory Management Misconceptions(www.simple-talk.com)

submitted by dpetersondpeterson(4397) 9 months, 27 days ago

Fantastic article on memory management in .NET. This is a must read. Also includes a webinar and pdf on the subject, do yourself a favor and save a copy of this somewhere safe. read more...

2 comments |category: |Views: 40

tags: another