This question apply to a C# object that is a subclass of an Android View. Android Views are C# objects bounds to the lifetime of the underlying Java 'Object' class which provides a standard Dispose() pattern.
Is it possible that a C# object is disposed without Dispose(true)
being ever called ?
I've verified that only Dispose(false) is ever called. And when it's called, the C# properties are unavailable (already disposed). But Dispose(true) is never called.