Hi everyone!
I have an application in C#, that at some point calls a
Microsoft.Office.Interop.Word._Application
Problem is that when that point is reached, it takes ages to load the word app. I thought of creating a thread at the beginning of the program, so that the word app is loaded then. My questions are:
1. Is my thinking correct? and if yes
2. How can I access that thread from within the method?
3. Should I overload the destructor to stop the thread at the end?
4. Is there a better way of doing it?