词.范围无法找到程序集引用

本文关键字:程序集 引用 范围 | 更新日期: 2023-09-27 18:12:26

我正在尝试使用c#在Microsoft Word 2010中创建一个表。下面显示的示例代码无法找到程序集引用。有人知道Word的程序集引用吗?还是我缺少一个命名空间?

我得到的确切错误是"无法找到类型或名称空间名称'Word'(您是否缺少using指令或程序集引用?)

//I have added these directives but I am still getting an error below
using Microsoft.Office.Interop.Word;
using Microsoft.Office.Tools.Word;
object start = 0;
object end = 0;
//The Word is giving a build error saying no assembly reference can be found
Word.Range tableLocation = this.Range(ref start, ref end);
this.Tables.Add(tableLocation, 3, 4);

词.范围无法找到程序集引用

有两个引用必须附加:

  1. Microsoft.Interop.Word dll从GAC选项卡。
  2. Microsoft Office Object Library dll从COM选项卡。