DotNetShoutout - Stories tagged with Garbage Collection
3
Shouts

Garbage Collection in .NET

published 703 days, 7 hours, 30 minutes ago posted by sonukapoorsonukapoor 703 days, 13 hours, 4 minutes ago
Wednesday, June 15, 2011 7:34:46 PM GMT Wednesday, June 15, 2011 2:00:36 PM GMT
In this article the principles of garbage collection are reviewed, fundamentals of garbage collection in .NET are discovered, and the changes to garbage collector in .NET Framework 4.0 are discussed. (more)
category: Architecture | clicked: 23 | comment | | source: dotnetslackers.com
tags: .NET, Garbage Collection, .NET Framework 4.0
3
Shouts

C-Sharp: How and When to use Dispose Pattern

published 885 days, 14 hours, 18 minutes ago posted by http://bimbim-in.myopenid.com/http://bimbim-in.myopenid.com/ 887 days, 10 hours, 1 minute ago
Wednesday, December 15, 2010 12:46:35 PM GMT Monday, December 13, 2010 5:04:15 PM GMT
As we know, In dotnet program we don’t need to delete(Cleanup) objects by our self because dotnet program is a managed code and there is garbage collector to do cleanups very efficiently for unused objects when required. But in some cases you need to free some unmanaged resource(Objects which uses unsafe handles like file, COM objects, Native resource etc) before garbage collector release it. (more)
category: How To | clicked: 0 | comment | | source: bimbim.in
tags: using in C#, IDisposable Interface, Garbage Collection, Dispose Design Pattern, cleanup of unmanage resource in dotnet
3
Shouts

Advanced Dotnet Tutorial: Garbage Collection Notifications in .NET 4.0

posted by learndotnet123learndotnet123 971 days, 20 hours, 22 minutes ago
Monday, September 20, 2010 6:42:56 AM GMT
Memory management is primary for any application. From the very beginning, we have used destructors,  or deleted the allocated memory whilst using the other programming languages like C or C++.  C# on the other hand being a proprietor of .NET framework provides us a new feature so that the programmer does  not have to bother about the memory deallocation and the framework does it automatically. The basic usage is :Always leave local variable. Set class variables, events etc to null.  This leaves us w... (more)
category: Web Dev | clicked: 3 | comment | | source: advanceddotnettutorial.blogspot.com
tags: C#, Garbage Collection
6
Shouts

Garbage Collection Notifications in .NET 4.0

published 1010 days, 15 hours ago posted by abhi2434abhi2434 1011 days, 4 hours, 8 minutes ago
Thursday, August 12, 2010 12:04:44 PM GMT Wednesday, August 11, 2010 10:57:23 PM GMT
Memory management is primary for any application. From the very beginning, we have used destructors,  or deleted the allocated memory whilst using the other programming languages like C or C++.  C# on the other hand being a proprietor of .NET framework provides us a new feature so that the programmer does  not have to bother about the memory deallocation and the framework does it automatically. The basic usage is : Always leave local variable.Set class variables, events etc to null. This leaves us wit... (more)
category: Architecture | clicked: 0 | comment | | source: www.abhisheksur.com
tags: memory management, Garbage Collection, Notifications
4
Shouts

Garbage Collection Algorithm with the use of WeakReference

posted by abhi2434abhi2434 1014 days, 9 hours, 49 minutes ago
Sunday, August 08, 2010 5:16:12 PM GMT
We all know .NET objects deallocates memory using Garbage Collection. Garbage collection is a special process that hooks in to the object hierarchy randomly and collects all the objects that are not reachable to the application running. Let us make Garbage collection a bit clear before moving to the alternatives. Garbage Collection Algorithm In .NET, every object is allocated using Managed Heap. We call it managed as every object that is allocated within the .NET environment is in explicit observa... (more)
category: Architecture | clicked: 1 | comment | | source: www.abhisheksur.com
tags: Weak Reference, Garbage Collection, C# .NET
6
Shouts

Garbage Collection in IE7 heavily impacted by number of JavaScript objects and string sizes

published 1151 days, 13 hours, 55 minutes ago posted by grabnerandigrabnerandi 1152 days, 9 hours, 37 minutes ago
Wednesday, March 24, 2010 1:09:53 PM GMT Tuesday, March 23, 2010 5:27:30 PM GMT
After my recent presentation at TSSJS – Performance Anti-Patterns in AJAX Applications - I got interesting feedback from one of the attendees: “The presentation was good but I thought you are talking more about actual problems with XHR/AJAX Requests”. I have to admit that I focused on all common problems of Web 2.0 applications – including network roundtrips, JavaScript and Rendering – and not just on those related to asynchronous communication. The comment made me work on a sample application where I wa... (more)
category: Web Dev | clicked: 0 | comment | | source: blog.dynatrace.com
tags: Performance, Garbage Collection, Internet Explorer
12
Shouts

The Disposable Pattern

published 1260 days, 11 hours, 50 minutes ago posted by CygonCygon 1262 days, 19 hours, 58 minutes ago
Saturday, December 05, 2009 3:14:36 PM GMT Thursday, December 03, 2009 7:07:07 AM GMT
Simple explanation of the Disposable Pattern in .NET for developers new to garbage collection. Explains when to implement the IDisposable interface only, where a finalizer is required and why you mustn't call into other objects from the finalizer thread. Also shows common use cases illustrating when to implement IDisposable and when to implement the full Disposable Pattern. (more)
category: Architecture | clicked: 2 | 1 comment | | source: www.nuclex.org
tags: Pattern, Garbage Collection, Beginner, Dispose, Patterns & Practices