Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
GeneralRe: Does the timer event run in a new thread? Pin
Dave Kreskowiak19-Aug-10 9:18
mveDave Kreskowiak19-Aug-10 9:18 
AnswerRe: Does the timer event run in a new thread? Pin
Luc Pattyn19-Aug-10 11:47
sitebuilderLuc Pattyn19-Aug-10 11:47 
AnswerRe: Does the timer event run in a new thread? Pin
Samuel Cherinet20-Aug-10 5:12
Samuel Cherinet20-Aug-10 5:12 
Questionhow C# Datagridview export to dbase IV ? Pin
pravietis19-Aug-10 1:57
pravietis19-Aug-10 1:57 
QuestionHow to minimize the garbage collector running .. ? Pin
Yanshof18-Aug-10 23:09
Yanshof18-Aug-10 23:09 
GeneralRe: How to minimize the garbage collector running .. ? PinPopular
Łukasz Nowakowski18-Aug-10 23:45
Łukasz Nowakowski18-Aug-10 23:45 
AnswerRe: How to minimize the garbage collector running .. ? Pin
DaveyM6918-Aug-10 23:59
professionalDaveyM6918-Aug-10 23:59 
AnswerRe: How to minimize the garbage collector running .. ? Pin
Luc Pattyn19-Aug-10 2:26
sitebuilderLuc Pattyn19-Aug-10 2:26 
There is only one good way to reduce the GC activity, and that is by reducing the need for memory due to the creation of new objects all the time. So get a smarter approach to whatever it is you want to achieve, or reduce the size of your objects, or reduce your need for objects, or recycle them. Recycling is a very effective means, but it isn't always easy as it works best for lots of objects of the same size; it also puts lifecycle management in your hands (as it was before GC-based languages got popular).

If you are creating synthetic bitmaps, recycling could be rather easy; if OTOH you load the bitmaps with existing (e.g. Bitmap.FromFile) it may not be practical.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


AnswerRe: How to minimize the garbage collector running .. ? Pin
Ennis Ray Lynch, Jr.19-Aug-10 3:24
Ennis Ray Lynch, Jr.19-Aug-10 3:24 
AnswerRe: How to minimize the garbage collector running .. ? Pin
#realJSOP19-Aug-10 3:44
mve#realJSOP19-Aug-10 3:44 
AnswerRe: How to minimize the garbage collector running .. ? Pin
Paul Michalik20-Aug-10 22:38
Paul Michalik20-Aug-10 22:38 
GeneralRe: How to minimize the garbage collector running .. ? Pin
Yanshof21-Aug-10 7:25
Yanshof21-Aug-10 7:25 
GeneralRe: How to minimize the garbage collector running .. ? Pin
Paul Michalik21-Aug-10 22:59
Paul Michalik21-Aug-10 22:59 
QuestionCheck Broken File Pin
dataminers18-Aug-10 22:41
dataminers18-Aug-10 22:41 
AnswerRe: Check Broken File Pin
R. Giskard Reventlov18-Aug-10 22:49
R. Giskard Reventlov18-Aug-10 22:49 
GeneralRe: Check Broken File Pin
dataminers19-Aug-10 0:34
dataminers19-Aug-10 0:34 
GeneralRe: Check Broken File Pin
R. Giskard Reventlov19-Aug-10 0:52
R. Giskard Reventlov19-Aug-10 0:52 
GeneralRe: Check Broken File Pin
Eddy Vluggen19-Aug-10 4:55
professionalEddy Vluggen19-Aug-10 4:55 
AnswerRe: Check Broken File Pin
Eddy Vluggen19-Aug-10 5:00
professionalEddy Vluggen19-Aug-10 5:00 
QuestionBind sql print statement to dropdown Pin
SatyaKeerthi1518-Aug-10 20:31
SatyaKeerthi1518-Aug-10 20:31 
QuestionAdd control to listview Pin
VCsamir18-Aug-10 20:11
VCsamir18-Aug-10 20:11 
AnswerRe: Add control to listview Pin
Bernhard Hiller18-Aug-10 20:24
Bernhard Hiller18-Aug-10 20:24 
AnswerRe: Add control to listview Pin
Rhuros18-Aug-10 22:12
professionalRhuros18-Aug-10 22:12 
QuestionHow to do binding DomainUpDown control to some variable ? [modified] Pin
Yanshof18-Aug-10 18:31
Yanshof18-Aug-10 18:31 
Questionneed help to transfer from java-script to C# Pin
goldsoft18-Aug-10 8:42
goldsoft18-Aug-10 8:42 

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.