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

C#

 
GeneralRe: Trouble with my IF's Pin
PIEBALDconsult12-Dec-08 3:03
mvePIEBALDconsult12-Dec-08 3:03 
AnswerRe: Trouble with my IF's Pin
DaveyM6912-Dec-08 1:31
professionalDaveyM6912-Dec-08 1:31 
QuestionWhich solution is of more performance ? Instantiating new object within a for loop Pin
Nadia Monalisa11-Dec-08 13:04
Nadia Monalisa11-Dec-08 13:04 
AnswerRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
Patrick_N3WB1E11-Dec-08 13:11
Patrick_N3WB1E11-Dec-08 13:11 
GeneralRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
Luc Pattyn11-Dec-08 13:40
sitebuilderLuc Pattyn11-Dec-08 13:40 
AnswerRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
Christian Graus11-Dec-08 13:41
protectorChristian Graus11-Dec-08 13:41 
AnswerRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
PIEBALDconsult11-Dec-08 14:02
mvePIEBALDconsult11-Dec-08 14:02 
AnswerRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
Tony Pottier11-Dec-08 15:49
Tony Pottier11-Dec-08 15:49 
If you just need to run some stuff in A, then throw it away, maybe you should consider adding some kind of "reset" method to myClass which will probably be much faster than instantiating a new object again and again.

Just run a quick benchmark with

DateTime start = DateTime.Now;
for(int i=0; i < aNumber; i++)
{
  myClass A = new myClass(i);

  ......................
}
DateTime end = DateTime.Now;
MessageBox.Show( ((TimeSpan)(end-start)).TotalMilliseconds );

GeneralRe: Which solution is of more performance ? Instantiating new object within a for loop Pin
PIEBALDconsult11-Dec-08 16:34
mvePIEBALDconsult11-Dec-08 16:34 
QuestionHow to get network connection name Pin
s196675m11-Dec-08 12:27
s196675m11-Dec-08 12:27 
AnswerRe: How to get network connection name Pin
Patrick_N3WB1E11-Dec-08 13:13
Patrick_N3WB1E11-Dec-08 13:13 
GeneralRe: How to get network connection name Pin
Dave Kreskowiak11-Dec-08 15:43
mveDave Kreskowiak11-Dec-08 15:43 
AnswerRe: How to get network connection name Pin
Dave Kreskowiak11-Dec-08 15:42
mveDave Kreskowiak11-Dec-08 15:42 
GeneralRe: How to get network connection name Pin
s196675m12-Dec-08 2:33
s196675m12-Dec-08 2:33 
GeneralRe: How to get network connection name Pin
s196675m12-Dec-08 2:47
s196675m12-Dec-08 2:47 
QuestionCustom Events Pin
#realJSOP11-Dec-08 10:37
mve#realJSOP11-Dec-08 10:37 
AnswerRe: Custom Events Pin
Mark Salsbery11-Dec-08 10:52
Mark Salsbery11-Dec-08 10:52 
GeneralRe: Custom Events Pin
#realJSOP11-Dec-08 12:15
mve#realJSOP11-Dec-08 12:15 
GeneralRe: Custom Events Pin
Mark Salsbery11-Dec-08 12:24
Mark Salsbery11-Dec-08 12:24 
AnswerRe: Custom Events Pin
PIEBALDconsult11-Dec-08 12:15
mvePIEBALDconsult11-Dec-08 12:15 
GeneralRe: Custom Events Pin
#realJSOP11-Dec-08 12:17
mve#realJSOP11-Dec-08 12:17 
GeneralRe: Custom Events Pin
PIEBALDconsult11-Dec-08 13:55
mvePIEBALDconsult11-Dec-08 13:55 
AnswerRe: Custom Events Pin
Christian Graus11-Dec-08 12:44
protectorChristian Graus11-Dec-08 12:44 
AnswerRe: Custom Events Pin
User 433002811-Dec-08 15:02
User 433002811-Dec-08 15:02 
AnswerRe: Custom Events Pin
DaveyM6912-Dec-08 2:25
professionalDaveyM6912-Dec-08 2:25 

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.