1
Answer

read content from word document in c# with out use word dll.

Krupit Patel

Krupit Patel

9y
1.6k
1
hiii
 
 i want to get content from Microsoft word file with out
Microsoft.Office.Interop dll uses.
 
I also use this code but its only read text from  .xml file and .txt file not in .doc file
 ----------------------------------------------------
using System.IO;
using(StreamReader streamReader = new StreamReader(filePath))
{
string text = streamReader.ReadToEnd();
}
 
 
 
Answers (1)