Click here to Skip to main content
15,881,882 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Questions Pin
OriginalGriff8-Jul-14 9:32
mveOriginalGriff8-Jul-14 9:32 
GeneralRe: C# Questions Pin
shiftwik8-Jul-14 21:09
shiftwik8-Jul-14 21:09 
GeneralRe: C# Questions Pin
OriginalGriff8-Jul-14 21:21
mveOriginalGriff8-Jul-14 21:21 
GeneralRe: C# Questions Pin
Erik Westermann11-Jul-14 3:48
professionalErik Westermann11-Jul-14 3:48 
GeneralRe: C# Questions Pin
OriginalGriff8-Jul-14 21:23
mveOriginalGriff8-Jul-14 21:23 
GeneralRe: C# Questions Pin
Richard Deeming9-Jul-14 1:48
mveRichard Deeming9-Jul-14 1:48 
GeneralRe: C# Questions Pin
OriginalGriff9-Jul-14 2:30
mveOriginalGriff9-Jul-14 2:30 
GeneralRe: C# Questions Pin
Nicholas Marty9-Jul-14 4:33
professionalNicholas Marty9-Jul-14 4:33 
Should call Dispose if you are implementing the IDisposable Interface Shucks | :-\

You usually only use it to ensure that unmanaged resources are released, to prevent memory leaks. Either immediatly when Dispose gets called or when the GC calls the Finalize Method (which you have to override in that case), in case it didn't get called by the code which held the reference to it.

You might also use it to free resources before the GC kicks in (by setting large fields like lists etc. to null and thus making it easier for the GC to collect those resources). Poke tongue | ;-P
GeneralRe: C# Questions Pin
Richard Deeming9-Jul-14 5:03
mveRichard Deeming9-Jul-14 5:03 
GeneralRe: C# Questions Pin
Nicholas Marty9-Jul-14 20:32
professionalNicholas Marty9-Jul-14 20:32 
GeneralRe: C# Questions Pin
Richard Deeming10-Jul-14 1:01
mveRichard Deeming10-Jul-14 1:01 
GeneralRe: C# Questions Pin
Nicholas Marty11-Jul-14 0:48
professionalNicholas Marty11-Jul-14 0:48 
AnswerRe: C# Questions Pin
V.9-Jul-14 1:40
professionalV.9-Jul-14 1:40 
GeneralHelp Pin
gsn19708-Jul-14 8:13
gsn19708-Jul-14 8:13 
GeneralRe: Help Pin
Richard MacCutchan8-Jul-14 8:23
mveRichard MacCutchan8-Jul-14 8:23 
GeneralRe: Help Pin
Pete O'Hanlon8-Jul-14 9:37
mvePete O'Hanlon8-Jul-14 9:37 
GeneralRe: Help Pin
gsn197015-Jul-14 21:18
gsn197015-Jul-14 21:18 
GeneralRe: Help Pin
Pete O'Hanlon15-Jul-14 21:44
mvePete O'Hanlon15-Jul-14 21:44 
GeneralRe: Help Pin
gsn197018-Jul-14 0:42
gsn197018-Jul-14 0:42 
Generalneed your help Pin
gsn197025-Sep-14 4:12
gsn197025-Sep-14 4:12 
GeneralRe: need your help Pin
Pete O'Hanlon25-Sep-14 4:44
mvePete O'Hanlon25-Sep-14 4:44 
GeneralRe: need your help Pin
gsn197025-Sep-14 20:53
gsn197025-Sep-14 20:53 
GeneralRe: need your help Pin
Pete O'Hanlon25-Sep-14 21:07
mvePete O'Hanlon25-Sep-14 21:07 
GeneralRe: need your help Pin
gsn197025-Sep-14 21:14
gsn197025-Sep-14 21:14 
QuestionPrinting Bytes to printer in MVC Pin
nitin_ion7-Jul-14 23:32
nitin_ion7-Jul-14 23:32 

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.