gpt4 book ai didi

c# - 使用 'Microsoft.Office.Interop.Word._Document.Close'时编译时警告

转载 作者:IT王子 更新时间:2023-10-29 04:42:52 24 4
gpt4 key购买 nike

有人知道如何解决这个警告消息吗?

Ambiguity between method 'Microsoft.Office.Interop.Word._Document.Close(ref object, ref object, ref object)' and non-method 'Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close'. Using method group.

最佳答案

我设法解决警告的唯一方法是使用显式强制转换:

var doc_close = (Microsoft.Office.Interop.Word._Document) _doc;
doc_close.Close();

如果您已经为 Microsoft.Office.Interop.Word using,您可以将转换简化为:

var doc_close = (_Document) _doc;
doc_close.Close();

甚至只是

((_Document)_doc).Close();

关于c# - 使用 'Microsoft.Office.Interop.Word._Document.Close'时编译时警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8640594/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com