Y
yoz
Hi everyone,
I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.
for example:
public interface IA
{
void proc1();
}
public interface IB: IA
{
void proc2();
}
In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?
Regards
I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.
for example:
public interface IA
{
void proc1();
}
public interface IB: IA
{
void proc2();
}
In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?
Regards