In unmanaged code, I can use LoadTypeLib() to get the ITypeLib* pointer and use it to search typelib to find which interfaces it contains.
C # has the System.Runtime.InteropServices.ComTypes.ITypeLib interface, but I cannot find the equivalent of the LoadTypeLib() function.
How to download typelib and get the ITypeLib link in C #?
source share