Groups | Blog | Home
all groups > dotnet faqs > january 2004 >

dotnet faqs : Garbage Collection and Manage Code?


Wayne Wengert
1/26/2004 5:15:12 AM
Those terms usually apply to the .NET environment. You might want to post
this question in one of those NGs.

Wayne

[quoted text, click to view]

Bob Butler
1/26/2004 6:13:39 AM
[quoted text, click to view]

It is; it's cross-posted to both dotnet and VB 'classic' groups so the
responses are a mixture of both worlds.

--
Reply to the group so all can participate
VB.Net... just say "No"
Jay B. Harlow [MVP - Outlook]
1/26/2004 11:36:33 AM
Laser,
In addition to the other's comments:

http://msdn.microsoft.com/netframework/

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/faq111700.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/netstart/html/cpframeworkref_start.asp

Hope this helps
Jay

[quoted text, click to view]

Cor
1/26/2004 11:46:37 AM
Hi Laser,

You can go to this link (not the microsoft normal link) and type in
"managed code" in the search

http://msdn.microsoft.com/

The garbage collection is a collection from unused objects which is cleaned
by the framework time by time.

I hope this helps,

Cor
[quoted text, click to view]

Laser Lu
1/26/2004 6:37:17 PM
What doese Garbage Collection mean? And what is Managed Code?
Any links to relevant articles or resources would be appreciated!

--
Best regards,
Laser Lu

Gaurav Khanna [C# MVP]
1/27/2004 9:18:19 AM
Hi!

Simply put, Managed Code refers to the code that executes within the
confines and control of the Common Language Runtime (CLR), the Virtual
Machine for the .NET Framework. And one of the benefits of using managed
code is that you can allocate memory for the objects created by your
application, without worrying about releasing that memory. The CLR is
intelligent enough to decide when an object, allocated by your application,
has become garbage (i.e., no longer being used by your application), and it
will automatically collect all the garbage objects and release the
associated memory. This process is termed as Garbage collection.

The following articles by Jeffrey Richter will help you understand it
better:

http://msdn.microsoft.com/msdnmag/issues/1100/GCI/GCI.asp
http://msdn.microsoft.com/msdnmag/issues/1200/GCI2/GCI2.asp

--
Regards,
Kumar Gaurav Khanna
-----------------------------------------------------------------
Microsoft MVP - C#/.NET, MCSE Windows 2000/NT4, MCP+I
WinToolZone - Spelunking Microsoft Technologies
http://www.wintoolzone.com/
OpSupport - Spelunking Rotor
http://opsupport.sscli.net/
Bangalore .NET Users' Group
http://groups.msn.com/bdotnet/
[quoted text, click to view]

AddThis Social Bookmark Button