I'm working on asp.net mvc project I want to read text contents from docx file stored as byte array by using Microsoft.Office.Interop.Word
DB db = new DB();
var FileById = (from FC in db.table
where FC.SPtId.Equals(1)
select FC.Report).ToList().FirstOrDefault();
byte[] fileBytes = FileById;
then how to deals with it by using Microsoft.Office.Interop.Word to reach the text contents