和非方法存在二义性
//关闭WordDoc文档对象
WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
//关闭WordApp组件对象
WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
.Close() 和.Quit() 提示我方法 word.Document.Close(ref object,ref object,ref object) 和非方法 word.DocumentEvent.Close 之间存在二义性。将使用方法组。
怎么办捏? 求救啊!!!
[解决办法]
不会吧,帮你顶顶先............
[解决办法]
因为编译器不知道close这个方法到底是Microsoft.Office.Interop.Word._Document
还是Microsoft.Office.Interop.Word.DocumentEvents2_Event的方法
解决方法:调用时详细指明你是要具体调用那个对象,如:
Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close()