D
DeepDiver
Hey,
i have problems with the COM interop stuff of .NET.
I have a COM component with following interface:
interface IActionSet
{
void foo();
}
interface IController
{
void Init( IActionSet* as );
}
i added this dll to my .NET project, implemented a C# class which implements
IActionSet.
then i pass this class to the method Init(...).
inside i just call foo()
what i get as result is a NullReferenceException.
Anybody any idea how to solve this?
THX
Tom
i have problems with the COM interop stuff of .NET.
I have a COM component with following interface:
interface IActionSet
{
void foo();
}
interface IController
{
void Init( IActionSet* as );
}
i added this dll to my .NET project, implemented a C# class which implements
IActionSet.
then i pass this class to the method Init(...).
inside i just call foo()
what i get as result is a NullReferenceException.
Anybody any idea how to solve this?
THX
Tom