Click here to Skip to main content
15,900,725 members
Home / Discussions / C#
   

C#

 
GeneralRe: need help - A C# utility for a simple web query like application Pin
carl_em_200714-Oct-08 6:24
carl_em_200714-Oct-08 6:24 
GeneralRe: need help - A C# utility for a simple web query like application Pin
Ed.Poore14-Oct-08 8:03
Ed.Poore14-Oct-08 8:03 
Questionone question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:33
Seraph_summer14-Oct-08 5:33 
AnswerRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 5:36
Simon P Stevens14-Oct-08 5:36 
GeneralRe: one question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:45
Seraph_summer14-Oct-08 5:45 
GeneralRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 5:59
Simon P Stevens14-Oct-08 5:59 
GeneralRe: one question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:59
Seraph_summer14-Oct-08 5:59 
GeneralRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 6:04
Simon P Stevens14-Oct-08 6:04 
In .net you don't need to clear memory. Most .net objects are "managed" which means their memory is automatically reclaimed by the garbage collector, provided you don't hold references too them after they should have gone out of scope, so you don't need to worry about it.

When a class uses unmanaged memory, it will implement the IDisposable interface. In this case, you just call the Dispose() method when you are finished with it to release the objects unmanaged memory.

I've only briefly looked over your code, but I can't see any types in there that need disposing of.

Simon

QuestionWindows Forms Action Framework [modified] Pin
Donkey Master14-Oct-08 5:17
Donkey Master14-Oct-08 5:17 
AnswerRe: Windows Forms Action Framework Pin
Simon P Stevens14-Oct-08 5:34
Simon P Stevens14-Oct-08 5:34 
GeneralRe: Windows Forms Action Framework Pin
Donkey Master14-Oct-08 5:56
Donkey Master14-Oct-08 5:56 
GeneralRe: Windows Forms Action Framework Pin
Simon P Stevens14-Oct-08 6:07
Simon P Stevens14-Oct-08 6:07 
QuestionHow To discover websevices Method Pin
shames(Sam)14-Oct-08 4:39
shames(Sam)14-Oct-08 4:39 
AnswerRe: How To discover websevices Method Pin
led mike14-Oct-08 4:49
led mike14-Oct-08 4:49 
GeneralRe: How To discover websevices Method Pin
shames(Sam)14-Oct-08 6:03
shames(Sam)14-Oct-08 6:03 
Questiona way to execute the file on list view by doubleclick Pin
Gianpaolo Barci14-Oct-08 4:37
Gianpaolo Barci14-Oct-08 4:37 
QuestionRe: a way to execute the file on list view by doubleclick Pin
led mike14-Oct-08 4:46
led mike14-Oct-08 4:46 
AnswerRe: a way to execute the file on list view by doubleclick Pin
Gianpaolo Barci14-Oct-08 5:10
Gianpaolo Barci14-Oct-08 5:10 
AnswerRe: a way to execute the file on list view by doubleclick Pin
DaveyM6914-Oct-08 5:31
professionalDaveyM6914-Oct-08 5:31 
GeneralRe: a way to execute the file on list view by doubleclick Pin
Gianpaolo Barci14-Oct-08 5:48
Gianpaolo Barci14-Oct-08 5:48 
GeneralRe: a way to execute the file on list view by doubleclick Pin
Gianpaolo Barci14-Oct-08 6:44
Gianpaolo Barci14-Oct-08 6:44 
GeneralRe: a way to execute the file on list view by doubleclick Pin
DaveyM6914-Oct-08 9:09
professionalDaveyM6914-Oct-08 9:09 
QuestionCrystal Report Deployment Pin
K V Sekhar14-Oct-08 4:00
K V Sekhar14-Oct-08 4:00 
AnswerRe: Crystal Report Deployment Pin
selcuks14-Oct-08 4:43
selcuks14-Oct-08 4:43 
AnswerRe: Crystal Report Deployment Pin
Ennis Ray Lynch, Jr.14-Oct-08 7:15
Ennis Ray Lynch, Jr.14-Oct-08 7:15 

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.