Changed call at disposal to just ReleaseComObject insted of FinalReleaseComObject.

pull/119/head
dahall 2020-02-26 15:15:31 -07:00
parent ff228216a4
commit 8d10011a6f
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ namespace Vanara.InteropServices
public void Dispose()
{
if (Item == null) return;
Marshal.FinalReleaseComObject(Item);
Marshal.ReleaseComObject(Item);
Item = null;
}
}