Got a winform C# application.
It allows a stream of images to be displayed (like a video).
I also upload these jpegs 1 at time to my web server and a User can view these jpegs (like a video).
In the quest to make my code as efficient as possible I was wondering whether I can execute the part of my code that is responsible for uploading these images under a different priority - like real time for instance?
Is this possible?
If so..
Do I have to port my class object responsible for uploading these images into an external DLL? Then how would I 'launch' it under a different process priority?
If all this is possible, and If I accept the possible trade off of other processes on my PC which may be affected by all this will it actually give me an improved performance?
Thanks