Got a c # application for winform.
Allows you to display a stream of images (for example, video).
I also upload these jpegs 1 to my web server and the user can view these jpeg (e.g. video).
In an effort to make my code as efficient as possible, I was wondering if I can execute the part of my code that is responsible for loading these images under a different priority - for example, in real time?
Is it possible?
If so..
Should I transfer the class object responsible for loading these images into an external DLL? Then how do I βrunβ it under a different process priority?
If all of this is possible, and if I agree to a possible compromise of other processes on my PC that may be affected by all this, will this really give me improved performance?
thanks
source
share