所以我有一个包含很多页面的.doc,我想在C#中打开一个特定的页面。以下是我用来查看文档的代码
string docPath = @"...\path\to\doc.doc";
Microsoft.Office.Interop.Word.Application app = new
Microsoft.Office.Interop.Word.Application();
Document doc = app.Documents.Open(docPath);
string words = doc.Content.Text;
doc.Close();
app.Quit();