Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
GeneralRe: Email clients Pin
Heath Stewart10-May-04 8:58
protectorHeath Stewart10-May-04 8:58 
GeneralRe: Email clients Pin
wfe10-May-04 9:23
wfe10-May-04 9:23 
GeneralRe: Email clients Pin
Heath Stewart10-May-04 9:43
protectorHeath Stewart10-May-04 9:43 
GeneralRe: Email clients Pin
wfe11-May-04 3:00
wfe11-May-04 3:00 
GeneralRe: Email clients Pin
Heath Stewart11-May-04 3:12
protectorHeath Stewart11-May-04 3:12 
GeneralMemory Usage of a console application Pin
eranas9-May-04 10:25
eranas9-May-04 10:25 
GeneralRe: Memory Usage of a console application Pin
Jeff Varszegi9-May-04 12:11
professionalJeff Varszegi9-May-04 12:11 
GeneralRe: Memory Usage of a console application Pin
Heath Stewart10-May-04 3:39
protectorHeath Stewart10-May-04 3:39 
.NET is garbage collected. The garbage collector (GC) runs when the application is idle (like when it's minimized) or when memory consumption is high and it'd determined that more memory will be needed soon, or when memory is not available (in some cases). You can force garbage collection by running GC.Collect, but you should not do this in most cases. The GC runs when it needs to and very rarely should you force it (and GC.Collect is a synchronous call, so your thread of execution will block until the GC finishes collecting).

 

Microsoft MVP, Visual C#
My Articles
GeneralMouse Drag Event Pin
Member 6910899-May-04 7:15
Member 6910899-May-04 7:15 
GeneralRe: Mouse Drag Event Pin
Mazdak9-May-04 7:52
Mazdak9-May-04 7:52 
GeneralFree disk space Pin
kratchkov9-May-04 5:15
kratchkov9-May-04 5:15 
GeneralRe: Free disk space Pin
Mazdak9-May-04 5:21
Mazdak9-May-04 5:21 
GeneralRe: Free disk space Pin
kratchkov9-May-04 5:30
kratchkov9-May-04 5:30 
GeneralRe: Free disk space Pin
Mike Dimmick9-May-04 7:12
Mike Dimmick9-May-04 7:12 
GeneralRe: Free disk space Pin
kratchkov9-May-04 7:36
kratchkov9-May-04 7:36 
Generalrepaint a TreeView Pin
cristina_tudor9-May-04 5:05
cristina_tudor9-May-04 5:05 
GeneralRe: repaint a TreeView Pin
Mazdak9-May-04 5:15
Mazdak9-May-04 5:15 
GeneralBug in java.util.zip.Zipfile Pin
Nish Nishant8-May-04 23:15
sitebuilderNish Nishant8-May-04 23:15 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Kannan Kalyanaraman9-May-04 1:59
Kannan Kalyanaraman9-May-04 1:59 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 2:45
sitebuilderNish Nishant9-May-04 2:45 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Kannan Kalyanaraman9-May-04 4:41
Kannan Kalyanaraman9-May-04 4:41 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 4:45
sitebuilderNish Nishant9-May-04 4:45 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 2:47
sitebuilderNish Nishant9-May-04 2:47 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Heath Stewart9-May-04 2:56
protectorHeath Stewart9-May-04 2:56 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 3:48
sitebuilderNish Nishant9-May-04 3:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.