I\'ve got a .Net 3.5 C# Winforms app. It\'s got no GUI as such, just a NotifyIcon with a ContextMenu.
I\'ve tried to set the NotifyIcon to visible=false and dispose
Have you overridden the dispose method of the object where you've initialised the notifyIcon to also dispose the notifyIcon?
protected override void Dispose(bool disposing) { if (disposing) { notifyIcon.Dispose(); notifyIcon = null; } base.Dispose(disposing); }