I have a VSTO Outlook 2013 Add-in that has been deployed.
- From an end-user's standpoint, is there a way to check if the add-in (COM) has not been deallocated / cleaned-up / closed correctly?
- From a developer's standpoint, how do I know what to cleanup? What fields/properties do I know need to look forward, e.g. everything that inherits from IDisposable?
- Within ThisAddIn_Shutdown(), is a call simply
GC.Collect()
suffice?