要在C#中讀取Word文檔,可以使用Microsoft.Office.Interop.Word庫。以下是一個簡單的示例代碼:
using Microsoft.Office.Interop.Word;
class Program
{
static void Main()
{
Application application = new Application();
Document document = application.Documents.Open("path_to_your_word_document.docx");
string text = document.Content.Text;
document.Close();
application.Quit();
System.Console.WriteLine(text);
}
}
請注意,你需要安裝Microsoft Office并在你的項目中引用Microsoft.Office.Interop.Word庫才能運行此代碼。你也可以使用第三方庫如NPOI或Aspose來讀取Word文檔。