Click here to Skip to main content
15,904,416 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: AGOD Pin
Dave Kreskowiak14-Sep-14 7:58
mveDave Kreskowiak14-Sep-14 7:58 
QuestionAbsence of blogs on left news sites Pin
Ernst Iliov Stavro Blofeld13-Sep-14 12:54
Ernst Iliov Stavro Blofeld13-Sep-14 12:54 
AnswerRe: Absence of blogs on left news sites Pin
Nelek13-Sep-14 14:15
protectorNelek13-Sep-14 14:15 
AnswerRe: Absence of blogs on left news sites Pin
PJ Arends13-Sep-14 17:16
professionalPJ Arends13-Sep-14 17:16 
AnswerRe: Absence of blogs on left news sites Pin
Richard MacCutchan14-Sep-14 0:12
mveRichard MacCutchan14-Sep-14 0:12 
AnswerRe: Absence of blogs on left news sites Pin
PIEBALDconsult14-Sep-14 5:36
mvePIEBALDconsult14-Sep-14 5:36 
QuestionDoes anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 12:45
SledgeHammer0113-Sep-14 12:45 
AnswerRe: Does anybody really use a Profiler? Pin
Ravi Bhavnani13-Sep-14 13:01
professionalRavi Bhavnani13-Sep-14 13:01 
You don't need a profiler to find a problem with this code snippet. Smile | :)
string ret = string.Empty;
for (int i=0; (i < someLargeInt); i++) {
    ret += AMethodThatReturnsAString (i);
}
return ret;


But a profiler can come in mighty handy when trying to identify the bottleneck in complex, old code that no longer seems to scale well.

/ravi
My new year resolution: 2048 x 1536
Home | Articles | My .NET bits | Freeware
ravib(at)ravib(dot)com

GeneralRe: Does anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 13:19
SledgeHammer0113-Sep-14 13:19 
GeneralRe: Does anybody really use a Profiler? Pin
Ravi Bhavnani13-Sep-14 13:38
professionalRavi Bhavnani13-Sep-14 13:38 
GeneralRe: Does anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 14:08
SledgeHammer0113-Sep-14 14:08 
GeneralRe: Does anybody really use a Profiler? Pin
Slacker00713-Sep-14 14:54
professionalSlacker00713-Sep-14 14:54 
GeneralRe: Does anybody really use a Profiler? Pin
David Mott15-Sep-14 5:15
David Mott15-Sep-14 5:15 
AnswerRe: Does anybody really use a Profiler? Pin
Maximilien13-Sep-14 13:02
Maximilien13-Sep-14 13:02 
GeneralRe: Does anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 13:21
SledgeHammer0113-Sep-14 13:21 
AnswerRe: Does anybody really use a Profiler? PinPopular
CDP180213-Sep-14 13:24
CDP180213-Sep-14 13:24 
GeneralRe: Does anybody really use a Profiler? Pin
Ravi Bhavnani13-Sep-14 13:39
professionalRavi Bhavnani13-Sep-14 13:39 
GeneralRe: Does anybody really use a Profiler? Pin
DaveX8613-Sep-14 13:44
DaveX8613-Sep-14 13:44 
GeneralRe: Does anybody really use a Profiler? Pin
CDP180213-Sep-14 14:04
CDP180213-Sep-14 14:04 
GeneralRe: Does anybody really use a Profiler? Pin
DaveX8613-Sep-14 14:09
DaveX8613-Sep-14 14:09 
GeneralRe: Does anybody really use a Profiler? Pin
Nelek13-Sep-14 14:22
protectorNelek13-Sep-14 14:22 
GeneralRe: Does anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 14:12
SledgeHammer0113-Sep-14 14:12 
GeneralRe: Does anybody really use a Profiler? Pin
CDP180213-Sep-14 21:35
CDP180213-Sep-14 21:35 
AnswerRe: Does anybody really use a Profiler? Pin
Slacker00713-Sep-14 13:41
professionalSlacker00713-Sep-14 13:41 
GeneralRe: Does anybody really use a Profiler? Pin
SledgeHammer0113-Sep-14 14:13
SledgeHammer0113-Sep-14 14:13 

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.