Help needed. Speed Up a process.
I need to speed up an process 5x faster than usual. But I have no idea on how to do so. Thank you.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sergio FonsecaPosted Feb 23, 2008, 6:48 PM
Len LPosted Feb 23, 2008, 6:29 PM
Sergio FonsecaPosted Feb 22, 2008, 2:18 PM
Ashley JacksonPosted Feb 22, 2008, 11:17 AM
The question is a little vague so I am unable to offer exact advice but the only way to do this is to make the code more efficent.
If you are using Visual Studio - run the code Analysis tool. This will give you performance hints on your code. Where possible make methos static. Check loops and make sure that anything that only needs to happen once is outside the loop.
Build and run the code in release mode instead of Debug. This can make the process run at least twice as fast!!!
Hope this helps
Ash...