I am using Microsoft.Office.Interop.Word to open a Word Document in c#. Is it possible to open without a phyical file which is in a specific path on your hard drive?
Microsoft.Office.Interop.Word.Documents.Open(FILENAME);
I have the Input as stream and string.
Is there anyother way to make a file object without saving to hard disk and give the input to the Filename ?
Thanks