Click here to Skip to main content
15,925,440 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Copy Past Outlook attachments Pin
bluepoison21-Sep-09 3:52
bluepoison21-Sep-09 3:52 
GeneralRe: Copy Past Outlook attachments Pin
Dave Kreskowiak21-Sep-09 4:08
mveDave Kreskowiak21-Sep-09 4:08 
GeneralRe: Copy Past Outlook attachments Pin
bluepoison21-Sep-09 21:22
bluepoison21-Sep-09 21:22 
GeneralRe: Copy Past Outlook attachments Pin
Richard MacCutchan21-Sep-09 23:58
mveRichard MacCutchan21-Sep-09 23:58 
GeneralRe: Copy Past Outlook attachments Pin
Dave Kreskowiak22-Sep-09 1:57
mveDave Kreskowiak22-Sep-09 1:57 
GeneralRe: Copy Past Outlook attachments Pin
Not Active22-Sep-09 3:06
mentorNot Active22-Sep-09 3:06 
Questionmultithreading in c#.net Pin
ananta121-Sep-09 0:47
ananta121-Sep-09 0:47 
AnswerRe: multithreading in c#.net Pin
Dave Kreskowiak21-Sep-09 4:14
mveDave Kreskowiak21-Sep-09 4:14 
You haven't really given enough details about the problem or any reason why you're using threading and how many threads you plan on using.

Keep in mind that every thread you start allocates at least 1MB of memory. So, if you think you're going to go start 250 threads, you just flushed 250MB of memory down the toilet. Starting a thread is a very expensive operation, so you don't want to just throw them around. You have to to some planning and keep the number of threads down to a minimum.

Remember, just because a machine can have hundreds of threads running at the same time, on a single core machine, only one of them runs at any given time. On a quad-core machine, four threads run at the same time. So, starting all kinds of threads is really just not that good of an idea.

Threading gives the illusion of greater performance, not the actual performance gain.


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008
But no longer in 2009...




Questionproblem with running a .net 2.0 application on vista Pin
prasadbuddhika21-Sep-09 0:04
prasadbuddhika21-Sep-09 0:04 
AnswerRe: problem with running a .net 2.0 application on vista Pin
Not Active21-Sep-09 0:47
mentorNot Active21-Sep-09 0:47 
AnswerRe: problem with running a .net 2.0 application on vista Pin
Luc Pattyn21-Sep-09 1:08
sitebuilderLuc Pattyn21-Sep-09 1:08 
GeneralRe: problem with running a .net 2.0 application on vista Pin
prasadbuddhika21-Sep-09 18:01
prasadbuddhika21-Sep-09 18:01 
GeneralRe: problem with running a .net 2.0 application on vista Pin
Luc Pattyn22-Sep-09 2:16
sitebuilderLuc Pattyn22-Sep-09 2:16 
QuestionWrite FLV video with bitmap images programmatically Pin
Raj Jayaswal20-Sep-09 19:07
Raj Jayaswal20-Sep-09 19:07 
AnswerRe: Write FLV video with bitmap images programmatically Pin
Simon P Stevens21-Sep-09 0:40
Simon P Stevens21-Sep-09 0:40 
GeneralRe: Write FLV video with bitmap images programmatically Pin
Raj Jayaswal22-Sep-09 5:17
Raj Jayaswal22-Sep-09 5:17 
QuestionHow to make a uninstaller for a .net windows application Pin
Raj Jayaswal20-Sep-09 19:02
Raj Jayaswal20-Sep-09 19:02 
QuestionAutoScroll Form and height ... Pin
devboycpp19-Sep-09 9:00
devboycpp19-Sep-09 9:00 
AnswerRe: AutoScroll Form and height ... Pin
Dave Kreskowiak19-Sep-09 10:59
mveDave Kreskowiak19-Sep-09 10:59 
GeneralRe: AutoScroll Form and height ... Pin
devboycpp19-Sep-09 21:34
devboycpp19-Sep-09 21:34 
GeneralRe: AutoScroll Form and height ... Pin
Dave Kreskowiak20-Sep-09 2:05
mveDave Kreskowiak20-Sep-09 2:05 
QuestionExceptions while loading project in VB.Net?? Pin
GuillermoOso18-Sep-09 11:57
GuillermoOso18-Sep-09 11:57 
AnswerRe: Exceptions while loading project in VB.Net?? Pin
Luc Pattyn18-Sep-09 12:50
sitebuilderLuc Pattyn18-Sep-09 12:50 
GeneralRe: Exceptions while loading project in VB.Net?? Pin
GuillermoOso18-Sep-09 12:57
GuillermoOso18-Sep-09 12:57 
GeneralRe: Exceptions while loading project in VB.Net?? Pin
Luc Pattyn18-Sep-09 13:03
sitebuilderLuc Pattyn18-Sep-09 13:03 

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.