I am working on image processing library in c#. want to improve performance/speed and better memory management. I am using Bitmap class and its just array manipulations. Can someone suggest me, how to improve it. any guidelines?
Asked
Active
Viewed 151 times
-1
-
1Have you profiled your library? What are your specific performance concerns? – Eric Smith Apr 01 '12 at 06:02
-
No, is there any tool you can suggest?, It takes too much time to run and take more memory. – Kamran Qadir Apr 01 '12 at 06:07
1 Answers
0
The first thing to do is to find out where your problem lies. I would suggest using the built-in Visual Studio profiler to figure out where your execution performance bottlenecks are.
There's an MSDN article here that explains how to use the profiler.

Eric Smith
- 5,262
- 2
- 33
- 49