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();
}