Click here to Skip to main content
16,005,826 members
Home / Discussions / C#
   

C#

 
GeneralRe: zip libraries Pin
suthan14-Sep-04 19:50
suthan14-Sep-04 19:50 
GeneralRe: zip libraries Pin
leppie15-Sep-04 6:07
leppie15-Sep-04 6:07 
GeneralWeb Page Comments Pin
Gary Hyslop at home14-Sep-04 7:48
Gary Hyslop at home14-Sep-04 7:48 
GeneralRe: Web Page Comments Pin
Dave Kreskowiak14-Sep-04 10:07
mveDave Kreskowiak14-Sep-04 10:07 
GeneralRe: Web Page Comments Pin
Heath Stewart14-Sep-04 11:05
protectorHeath Stewart14-Sep-04 11:05 
GeneralBitmap Dispose Pin
ee9903514-Sep-04 7:33
ee9903514-Sep-04 7:33 
GeneralRe: Bitmap Dispose Pin
Dave Kreskowiak14-Sep-04 9:03
mveDave Kreskowiak14-Sep-04 9:03 
GeneralRe: Bitmap Dispose Pin
Tom Larsen14-Sep-04 11:56
Tom Larsen14-Sep-04 11:56 
Memory reclaimation is technically "expensive" since it has to lock the references as they are, figure out what is ready to release, do optional stuff like compact, etc. So it is not done unless it is necessary (like low memory) or when it is sure you are idle (often it happens when you minimize) or when you explicitly call System.GC.Collect.

Because you are using a memory managed runtime, you shouldn't care when or how garbage collection happens as long as you Dispose is used correctly. Constantly calling System.GC.Collect slows your application down so if you have to use it please use it in the correct place.
GeneralBest way to do this.. Pin
eggie514-Sep-04 7:17
eggie514-Sep-04 7:17 
GeneralRe: Best way to do this.. Pin
Heath Stewart14-Sep-04 10:44
protectorHeath Stewart14-Sep-04 10:44 
GeneralRe: Best way to do this.. Pin
eggie514-Sep-04 11:47
eggie514-Sep-04 11:47 
GeneralRe: Best way to do this.. Pin
Heath Stewart14-Sep-04 12:01
protectorHeath Stewart14-Sep-04 12:01 
GeneralRe: Best way to do this.. Pin
eggie514-Sep-04 12:13
eggie514-Sep-04 12:13 
GeneralRe: Best way to do this.. Pin
eggie514-Sep-04 15:19
eggie514-Sep-04 15:19 
GeneralRe: Best way to do this.. Pin
Heath Stewart14-Sep-04 15:31
protectorHeath Stewart14-Sep-04 15:31 
GeneralProblem with registering a COM object Pin
Anonymous14-Sep-04 6:55
Anonymous14-Sep-04 6:55 
GeneralRe: Problem with registering a COM object Pin
mav.northwind14-Sep-04 7:11
mav.northwind14-Sep-04 7:11 
GeneralRe: Problem with registering a COM object Pin
Heath Stewart14-Sep-04 10:51
protectorHeath Stewart14-Sep-04 10:51 
GeneralRe: Problem with registering a COM object Pin
Code Learner15-Sep-04 5:12
sussCode Learner15-Sep-04 5:12 
Generalnetwork monitoring Pin
14-Sep-04 6:33
suss14-Sep-04 6:33 
GeneralRe: network monitoring Pin
Charlie Williams14-Sep-04 10:06
Charlie Williams14-Sep-04 10:06 
GeneralRe: network monitoring Pin
Dave Kreskowiak14-Sep-04 10:25
mveDave Kreskowiak14-Sep-04 10:25 
GeneralRe: network monitoring Pin
yoaz14-Sep-04 15:19
yoaz14-Sep-04 15:19 
GeneralContext menu with sub menu Pin
CyberTech14-Sep-04 6:26
CyberTech14-Sep-04 6:26 
GeneralRe: Context menu with sub menu Pin
Heath Stewart14-Sep-04 10:56
protectorHeath Stewart14-Sep-04 10:56 

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.