Click here to Skip to main content
15,896,348 members
Home / Discussions / C#
   

C#

 
AnswerRe: recursive Pin
Paul Conrad26-Sep-08 5:53
professionalPaul Conrad26-Sep-08 5:53 
AnswerRe: recursive Pin
Professor Sharada Ulhas26-Sep-08 6:25
Professor Sharada Ulhas26-Sep-08 6:25 
GeneralRe: recursive Pin
Paul Conrad26-Sep-08 8:42
professionalPaul Conrad26-Sep-08 8:42 
QuestionAny way to log on to a web page ? Pin
paresh_joe26-Sep-08 3:32
paresh_joe26-Sep-08 3:32 
AnswerRe: Any way to log on to a web page ? Pin
Guffa26-Sep-08 3:54
Guffa26-Sep-08 3:54 
Questionmemory usage Pin
reza assar26-Sep-08 2:21
reza assar26-Sep-08 2:21 
AnswerRe: memory usage Pin
Ashfield26-Sep-08 3:25
Ashfield26-Sep-08 3:25 
AnswerRe: memory usage Pin
Dan Neely26-Sep-08 3:55
Dan Neely26-Sep-08 3:55 
Garbage collection doesn't happen immediately. When it does the amount of allocated memory your application is using will decrease. Because allocating/returning memory from/to the OS is a relatively expensive process, your app won't do so immediately. Eventually if you don't use it the memory manager will decide ti doesn't need that much and return it. If your OS is getting low on memory it will ask if your app can return some and it will do so then, if your OS was low on memory when this was going on you'd've had a GC collect during the middle of your memory hogging exercise and the peak would never have gotten that high. There're some system events that will do the same (minimizing is one of them).

Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots.
-- Robert Royall

AnswerRe: memory usage Pin
Guffa26-Sep-08 4:01
Guffa26-Sep-08 4:01 
GeneralRe: memory usage Pin
reza assar26-Sep-08 13:09
reza assar26-Sep-08 13:09 
GeneralRe: memory usage Pin
Guffa26-Sep-08 15:22
Guffa26-Sep-08 15:22 
AnswerRe: memory usage Pin
Paul Conrad26-Sep-08 5:55
professionalPaul Conrad26-Sep-08 5:55 
GeneralRe: memory usage Pin
reza assar26-Sep-08 13:16
reza assar26-Sep-08 13:16 
GeneralRe: memory usage Pin
Paul Conrad26-Sep-08 13:19
professionalPaul Conrad26-Sep-08 13:19 
QuestionUsing exchange,mapi33 [c#] Pin
ugarte26-Sep-08 1:55
ugarte26-Sep-08 1:55 
QuestionSaving changes to bitmap file Pin
Muammar©26-Sep-08 1:46
Muammar©26-Sep-08 1:46 
AnswerRe: Saving changes to bitmap file Pin
Giorgi Dalakishvili26-Sep-08 2:26
mentorGiorgi Dalakishvili26-Sep-08 2:26 
AnswerRe: Saving changes to bitmap file Pin
PandemoniumPasha26-Sep-08 2:46
PandemoniumPasha26-Sep-08 2:46 
AnswerRe: Saving changes to bitmap file Pin
Guffa26-Sep-08 7:08
Guffa26-Sep-08 7:08 
GeneralRe: Saving changes to bitmap file Pin
Muammar©28-Sep-08 0:11
Muammar©28-Sep-08 0:11 
AnswerRe: Saving changes to bitmap file Pin
Dave Kreskowiak26-Sep-08 10:30
mveDave Kreskowiak26-Sep-08 10:30 
GeneralRe: Saving changes to bitmap file Pin
Muammar©27-Sep-08 5:02
Muammar©27-Sep-08 5:02 
GeneralRe: Saving changes to bitmap file Pin
Dave Kreskowiak27-Sep-08 11:03
mveDave Kreskowiak27-Sep-08 11:03 
GeneralRe: Saving changes to bitmap file Pin
Muammar©28-Sep-08 0:18
Muammar©28-Sep-08 0:18 
QuestionTools for Team Working (like Visual Source Safe) in VS2008 Team Suite. Pin
hdv21226-Sep-08 1:44
hdv21226-Sep-08 1:44 

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.