I have a embedded word template document in my project, I added it as resource (Resources.resx -> Add resource -> Add existing file) and now I want to open it something like this
Microsoft.Office.Interop.Word.Application application = new Microsoft.Office.Interop.Word.Application();
Document document = application.Documents.Open(Properties.Resources.MyDoc);
But unfortunately the Microsoft.Office.Interop.Word.Application doesn't work with byte arrays and I can't set MyDoc to it.