while running the project when i open the form there is some delay which can easily be noticed.so may i know how to remove this delay ...
How to increase the speed of the windows application of C#.net
Collapse
X
-
Few tips to optimize code:
1. Use StringBuilder instead of String (for manipulation )
2. Use List<>/ Dict<,> instead of arraylist/ Hashtable....
3. Use Try Catch only when necesssary...
4. Use Asynchronous Programming where ever possibleComment
-
Comment