How to increase the speed of the windows application of C#.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • swatii
    New Member
    • May 2009
    • 15

    How to increase the speed of the windows application of C#.net

    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 ...
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    Based on the code you supplied for the opening of your form, I can see no problem.

    Comment

    • Plater
      Recognized Expert Expert
      • Apr 2007
      • 7872

      #3
      Originally posted by tlhintoq
      Based on the code you supplied for the opening of your form, I can see no problem.
      Classic.

      Increase the efficiency of your code if possible, otherwise not sure what to suggest?

      Comment

      • PRR
        Recognized Expert Contributor
        • Dec 2007
        • 750

        #4
        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 possible

        Comment

        • PRR
          Recognized Expert Contributor
          • Dec 2007
          • 750

          #5
          You may also wanna have a look at Improving .NET Application Performance and Scalability

          Comment

          Working...