Accessing underlying managed object through a COM interface
- by mfeingold
I have a third party assembly with a public abstract class implementing a certain COM interface. Something to the effect of
[ComVisible(true)]
public abstract class SomeClass: ISomeInterface
{
....
public void Method1() {...}
}
The actual object is an internal object extending the SomeClass and is instantiated by the third party code
Is there a way to access public methods of this class if all I have is the CCW to the ISomeInterface?