警告1
方法“Microsoft.Office.Interop.Word._Document.Close(ref object, ref object, ref object)”和非方法“Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close”之间存在二义性。将使用方法组。
部分程序:
Word.Document doc = null;
.
.
.
if (doc != null)
{
doc.Close(ref missing, ref missing, ref missing);//警告行
doc = null;
}
-
解决方案:
Word._Document doc = null; -
-
-
- 本文转自94cool博客园博客,原文链接:http://www.cnblogs.com/94cool/archive/2011/03/24/1994401.html,如需转载请自行联系原作者