Improve Performance - Tools?

  • Thread starter Thread starter Lakesider
  • Start date Start date
L

Lakesider

Hi NG,

I have written an application with a lot of file- and database
operations. There are several algorithmic operations, too. My question
is: are ther any tools to improve performance

- for "normal" C# methods
- for database operations
- for memory optimization
- ...

Thank you very much

Rudi
 
Lakesider said:
Hi NG,

I have written an application with a lot of file- and database
operations. There are several algorithmic operations, too. My question
is: are ther any tools to improve performance

- for "normal" C# methods
- for database operations
- for memory optimization


There are number of tools that will help you measure your application's
performance, and those should point you in the right direction, in terms of
what areas you can focus your attention on. As far as *how* to make things
better, it will really be a case-by-case situation. There are no silver
bullets.

There are some links to performance measurement tools here:

http://nomagichere.blogspot.com/2005/10/winning-performance-war.html

Marc
 
Back
Top