I am creating an application that will be much slower than it should be (the process takes 4 seconds, when it should only take 0.1 seconds, which is at least my goal).
I have a bunch of methods that pass an array from one to another. It helped my code beautifully and organized, but I worry that it kills the efficiency of my code.
Can anyone confirm if this is the case?
In addition, I have all of my code contained in the class, separate from my user interface. Will this make things work much slower than if I had the code contained in the Form1.cs file?
Edit: There are about 95,000 points that need to be calculated, each point goes through 7 methods that perform additional calculations.
source
share