当我尝试使用代码组合多个 .docx 文件时(第一个列表位于:Append multiple DOCX files together),我似乎缺少 OfficeMergeControlException 的程序集引用。
我正在使用 .NET Framework 4。
有任何想法吗?
谢谢,丰富
当我尝试使用代码组合多个 .docx 文件时(第一个列表位于:Append multiple DOCX files together),我似乎缺少 OfficeMergeControlException 的程序集引用。
我正在使用 .NET Framework 4。
有任何想法吗?
谢谢,丰富
在那个场景中抛出自定义异常是没有意义的。只需抛出一个异常
catch (Exception e)
{
throw new Exception(string.Format(CultureInfo.CurrentCulture, "Error while merging files. Document index {0}", pointer), e);
}
或者更好的是根本不捕获异常。通过更改异常类型和格式化消息,您会丢失信息。
似乎是一个自定义异常。就像是:
public class OfficeMergeControlException : Exception
{
public OfficeMergeControlException(string message, System.Exception innerException) : base(message, innerException) { }
}