Anyone know how to solve this warning message?
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.
The only way I've managed to resolve the warning is to use an explicit cast:
var doc_close = (Microsoft.Office.Interop.Word._Document) _doc;
doc_close.Close();
If you already have a using
for Microsoft.Office.Interop.Word
you can simplify the cast to:
var doc_close = (_Document) _doc;
doc_close.Close();
or even just
((_Document)_doc).Close();