You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more details on this issue, see #578 and this.
Main problem here is that when registering an ActiveX object, a call to Type.IsAssignableFrom will return false, even though the type is castable to the base type.
A complicating factor here is that it might be hard to define a unit test for this, since:
normal marshal by ref proxies will properly return true with Type.IsAssignableFrom, and
A reliable unit test that creates an ActiveX object, and can be run on any machine (i.e. AppVayor) might not be possible to create.
The text was updated successfully, but these errors were encountered:
For more details on this issue, see #578 and this.
Main problem here is that when registering an ActiveX object, a call to
Type.IsAssignableFrom
will return false, even though the type is castable to the base type.A complicating factor here is that it might be hard to define a unit test for this, since:
true
withType.IsAssignableFrom
, andThe text was updated successfully, but these errors were encountered: