Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does IDispatchEx exists?

Tags:

c#

interop

Can't find the library which contains IDispatchEx interface. I want to implement this interface, but can't find it. Does anyone knows where it is?

Thanks, Paul.

like image 956
Pavel Podlipensky Avatar asked May 20 '26 18:05

Pavel Podlipensky


1 Answers

If you want to write a managed class that implements the IDispatchEx interface you will first need to define this interface because it does not exist in .NET. Here's a link to its definition. IMHO implementing this interface won't be a trivial task.

like image 105
Darin Dimitrov Avatar answered May 23 '26 08:05

Darin Dimitrov