Xamarin: You must explicitly unsubscribe from NSNotifications if IDisposable
In Xamarin, if you observe / subscribe to a particularly-named NSNotification
in an object that is IDisposable
(this includes any class descended from NSObject
!), you MUST explicitly unsubscribe from it in your Dispose
handler, or you will get a segfault (the system will attempt to call a method at a memory …