Click here to Skip to main content
15,899,474 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Application Performance issue Pin
leppie20-Jun-08 3:45
leppie20-Jun-08 3:45 
GeneralRe: C# Application Performance issue Pin
leppie20-Jun-08 4:30
leppie20-Jun-08 4:30 
AnswerRe: C# Application Performance issue Pin
Abhijit Jana20-Jun-08 3:46
professionalAbhijit Jana20-Jun-08 3:46 
GeneralRe: C# Application Performance issue Pin
Rizawn20-Jun-08 4:02
Rizawn20-Jun-08 4:02 
GeneralRe: C# Application Performance issue Pin
Abhijit Jana20-Jun-08 4:09
professionalAbhijit Jana20-Jun-08 4:09 
GeneralRe: C# Application Performance issue Pin
Giorgi Dalakishvili20-Jun-08 6:53
mentorGiorgi Dalakishvili20-Jun-08 6:53 
GeneralRe: C# Application Performance issue Pin
Rizawn20-Jun-08 22:40
Rizawn20-Jun-08 22:40 
AnswerRe: C# Application Performance issue Pin
Scott Dorman21-Jun-08 1:40
professionalScott Dorman21-Jun-08 1:40 
There are probably two factors at work here...

1. If this is the first .NET application that has been run since the computer was last rebooted (or the first one run in a while), the .NET runtime itself (the CLR) needs to be loaded in to memory. This happens when your application first starts and does increase the startup time.

2. The fact that you can recompile on the client machine, which resolves the problem is probably due to my point above combined with the fact that the runtime no longer has to "fix up" as many assembly pointers in memory.

If the startup time really that large of a problem you should probably do some performance analysis and see where the application is spending most of its time during startup, and then fix those areas. .NET is already a dynamically (just-in-time) compiled language, so doing more dynamic compilation isn't going to help performance.

Scott Dorman
Microsoft® MVP - Visual C# | MCPD
President - Tampa Bay IASA

Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[Forum Guidelines][Articles][Blog]

QuestionNumber Input Validation Pin
dboy22120-Jun-08 3:37
dboy22120-Jun-08 3:37 
AnswerRe: Number Input Validation Pin
leppie20-Jun-08 3:41
leppie20-Jun-08 3:41 
GeneralRe: Number Input Validation Pin
dboy22120-Jun-08 4:06
dboy22120-Jun-08 4:06 
AnswerRe: Number Input Validation Pin
Abhijit Jana20-Jun-08 3:49
professionalAbhijit Jana20-Jun-08 3:49 
GeneralRe: Number Input Validation Pin
dboy22120-Jun-08 4:07
dboy22120-Jun-08 4:07 
GeneralRe: Number Input Validation Pin
dboy22120-Jun-08 4:09
dboy22120-Jun-08 4:09 
GeneralRe: Number Input Validation Pin
Abhijit Jana20-Jun-08 4:11
professionalAbhijit Jana20-Jun-08 4:11 
AnswerRe: Number Input Validation Pin
User 665820-Jun-08 4:06
User 665820-Jun-08 4:06 
GeneralRe: Number Input Validation Pin
Abhijit Jana20-Jun-08 4:13
professionalAbhijit Jana20-Jun-08 4:13 
QuestionWhy does this code not WORK? Pin
Christopher Stratmann20-Jun-08 2:40
Christopher Stratmann20-Jun-08 2:40 
AnswerRe: Why does this code not WORK? Pin
Abhijit Jana20-Jun-08 2:57
professionalAbhijit Jana20-Jun-08 2:57 
GeneralRe: Why does this code not WORK? Pin
Christopher Stratmann20-Jun-08 2:59
Christopher Stratmann20-Jun-08 2:59 
AnswerRe: Why does this code not WORK? Pin
Abhijit Jana20-Jun-08 3:18
professionalAbhijit Jana20-Jun-08 3:18 
AnswerRe: Why does this code not WORK? Pin
Alan Balkany20-Jun-08 3:01
Alan Balkany20-Jun-08 3:01 
AnswerRe: Why does this code not WORK? Pin
carbon_golem20-Jun-08 3:02
carbon_golem20-Jun-08 3:02 
GeneralRe: Why does this code not WORK? Pin
Christopher Stratmann20-Jun-08 3:05
Christopher Stratmann20-Jun-08 3:05 
GeneralRe: Why does this code not WORK? Pin
leppie20-Jun-08 3:43
leppie20-Jun-08 3:43 

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.