标签: c# ms-word vsto add-in
我正在编写一个单词插件,并希望将docx文件作为字节数组并将其发送到Web服务。
我可以这样做吗?
答案 0 :(得分:2)
您可以使用ReadAllBytes:
byte[] bytes = File.ReadAllBytes(filename);
这就是你要找的东西吗?