Jan Schreuder on .Net

.Net code samples, experiences, observations

View my professional profile on LinkedIn

Recent Posts

Tags

News

  • Inappropriate comments will be deleted at my discretion.

    The information and code samples in this weblog is provided "AS IS" without warranty of any kind, either expressed or implied, including but not limited to the merchantability and/or fitness for a particular purpose.

Community

Email Notifications

Tool suppliers

Tools

General

Microsoft

Favorite blogs

Archives

Browse by Tags

All Tags » Memory management in .Net (RSS)
Finding Memory Leaks in WPF-Based applications
No matter what people say, managed code applications can (and will) leak memory. I bumped into a blog post on MSDN today which describes how memory leaks in WPF applications can be avoided and found should they occur. From the blog post: In this blog...
Dispose and the Garbage collector
I was assigned to a .Net web project some years ago to see why the application continued to allocate more and more memory untill IIS thought it was to time to restart the application. I solved a lot of the problems in that project simply by calling the...
Memory allocations revisited
A few weeks back I blogged about optimizing memory use in a .Net application. On that note, I was reminded to some links to Microsoft documents on the internet that deal with memory leaks and how to debug them. I posted them before, but with my recent...
Rediscover the Lost Art of Memory Optimization in Your Managed Code
Back in the old day's, when Bill Gates claimed 640 kB was all anyone would need, we had to really look at how we used memory resources in our applications. Today, it seems that nobody is really bothered with memory issues anymore. Simply add more memory...
.Net Framework Service Pack 3 is coming!
Just read on MSDN that SP3 for .Net is on it's way. You can already download it to perform testing but Microsoft warns you not to install it in production environments yet. While I was browsing through all the issues that were solved , I found a link...
Memory management and databindings
I was reading this article on MSDN Field Views on Windows Forms 1.0 and 1.1 Data Binding and bumped into a section about databinding and memory leaks. As you may know, I've struggled with this in my first .Net project. Steve White, the author of this...
Microsoft on memory leaks
Pascal Naber pointed me to some Microsoft Documents that focus on memory links, which you can find below. The links also contain tips on improving the memory use of your applications. Identify Memory Leaks in the Common Language Runtime Roadmap for Debugging...
Memory leaks in .Net
Door alle spin die Microsoft aan het .Net Framework heeft gegeven denken veel developers dat geheugenallocatie geen probleem meer is. “De Garbage collector ruimt alles wel voor me op”. Dat is wel waar, maar alleen als de garbage collector...