Docx files are zipped. The only strings you'll find there are relative to zip headers. There won't be any text from your document.
You can see this in Windows by changing the docx file extension to zip and then double-clicking the file. You'll find an archive with some XML content, which can open with any Xml reader, or even notepad.
You could do the same thing manually in code (ie via System.IO.Compression types), but you don't have to. There are other libraries that have already done much of the hard work for you to extract the archive and already know what files and schema to look for. Some of them freely available on NuGet.