May I get some tips to optimize the speed of Windows application
any good advises will be appreciated.
Loading
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.
Manikavelu VelayuthamPosted Feb 25, 2011, 6:19 AM
Like that so many are there.
You should know where to use which function and where to use which technology.
Decision making plays here.
For a single table manipulation, we can use either a DataTable or DataSet. But we need to choose which one will be an optimal one. There the performance succeeds.
Ajain A K PPosted Feb 25, 2011, 6:42 AM
Ajain A K PPosted Feb 25, 2011, 6:41 AM
Jaganathan BantheswaranPosted Feb 25, 2011, 6:17 AM
To speed up the applications in windows OS:
http://www.gilsmethod.com/htspeedupapplications
To speed up your C# Windows Application :
Use StringBuilder for string manipulation
Use List<>/ Dict<,> for collection of Items
Use Try Catch only when necesssary...
Use asynchronous logic for method call where ever possible