What im doing is creating a dll that parses xml documents located on the interwebs. The issue that im having is that the application that will use it freezes while the documents are retreived and parsed. So, im under the impression that i will need to utilize threading of some sort. My question is, is it possible, from main thread, to pass args to a backgroundworker, which will pass them to a method, that will use it to return a string, which will then be returned to the main thread?
Or, is there a better/simpler way to go about this?
And, would anyone be willing to offer an example?
Thx in adv