Where does IDispatchEx exist?

Unable to find library containing IDispatchEx interface. I want to implement this interface but cannot find it. Does anyone know where this is?

Thanks, Paul.

+3
source share
2 answers

If you want to write a managed class that implements the IDispatchEx interface , you must first define this interface because it does not exist on the NETWORK. Here is a link to its definition. IMHO implementing this interface will not be a trivial task.

+4
source

What exactly do you want to do? Is it for use inside C #? Or from the outside (COM)?

, , , WebBrowser ObjectForScripting.

# 3.0 :

public static void Bar(this Foo foo, int someArg) {...}
....
Foo foo = ...
foo.Bar(123);

. # 4.0 dynamic CLR/DLR, IDynamicObject. .

0

Source: https://habr.com/ru/post/1704785/


All Articles