VSTO word加载项将docx作为字节数组

时间:2009-11-25 16:22:53

标签: c# ms-word vsto add-in

我正在编写一个单词插件,并希望将docx文件作为字节数组并将其发送到Web服务。

我可以这样做吗?

1 个答案:

答案 0 :(得分:2)

您可以使用ReadAllBytes

byte[] bytes = File.ReadAllBytes(filename);

这就是你要找的东西吗?