I have been using the following to code to write in word file but not able to store the word file. Is there any way to store the word file using C# ?
object
You should just be able to use SaveAs.
oDoc.SaveAs("MyFile.doc", ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
If you are using .NET 4.0 you don't need the oMissings.
S