Krupit Patel

Krupit Patel

  • NA
  • 6
  • 761

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

Jun 16 2015 1:30 AM
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)