I\'m running into the classic scenario where, when creating Word COM objects in .NET (via the Microsoft.Office.Interop.Word assembly), the WinWord process won\'t exit even t
this is a perfect solution, i had same problem, i just followed this one and it is working perfect.
object objFalse = false;
wordApplication.Quit(ref objFalse, ref objFalse, ref objFalse);