Click here to Skip to main content
15,905,776 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# vs VB6.0 Pin
Judah Gabriel Himango27-Sep-08 8:25
sponsorJudah Gabriel Himango27-Sep-08 8:25 
GeneralRe: C# vs VB6.0 Pin
Mohammad Dayyan27-Sep-08 10:17
Mohammad Dayyan27-Sep-08 10:17 
GeneralRe: C# vs VB6.0 Pin
Judah Gabriel Himango28-Sep-08 10:04
sponsorJudah Gabriel Himango28-Sep-08 10:04 
AnswerRe: C# vs VB6.0 Pin
Pedram Behroozi26-Sep-08 10:27
Pedram Behroozi26-Sep-08 10:27 
Questionrecursive Pin
nesfrank26-Sep-08 4:04
nesfrank26-Sep-08 4:04 
AnswerRe: recursive Pin
User 665826-Sep-08 4:11
User 665826-Sep-08 4:11 
GeneralRe: recursive Pin
nesfrank26-Sep-08 5:10
nesfrank26-Sep-08 5:10 
GeneralRe: recursive Pin
J4amieC26-Sep-08 5:11
J4amieC26-Sep-08 5:11 
AnswerIt can be done without a loop Pin
Ennis Ray Lynch, Jr.26-Sep-08 5:10
Ennis Ray Lynch, Jr.26-Sep-08 5:10 
GeneralRe: It can be done without a loop Pin
nesfrank26-Sep-08 5:21
nesfrank26-Sep-08 5:21 
GeneralRe: It can be done without a loop Pin
Ennis Ray Lynch, Jr.26-Sep-08 5:27
Ennis Ray Lynch, Jr.26-Sep-08 5:27 
GeneralRe: It can be done without a loop Pin
Dan Neely26-Sep-08 7:22
Dan Neely26-Sep-08 7:22 
GeneralRe: It can be done without a loop Pin
User 665826-Sep-08 5:28
User 665826-Sep-08 5:28 
GeneralRe: It can be done without a loop Pin
Ennis Ray Lynch, Jr.26-Sep-08 5:32
Ennis Ray Lynch, Jr.26-Sep-08 5:32 
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 

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.