本文介绍了public Document [] Documents - 如何提供文档的路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好, 我做错了什么 跨度> Of course, if you're trying to send more than 1 document at once then the above syntax won't work as you'll be wiping out the previous array elements. In that case you'll want to pre-allocate the array and then use an index to set each element. 这篇关于public Document [] Documents - 如何提供文档的路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
的
推荐答案
sendOutBoundFAX.Documents = new [] {
new Document() { SomeStringProperty = textBoxDoc1.Text }
};
当然,如果您尝试一次发送多个文档,则上述语法将无效,因为您将消除以前的数组元素。在这种情况下,您需要预先分配数组,然后使用索引来设置每个元素。