G
Guest
I have an abstract base class defined in an MC++ class library. I then
create a descendent class in a C# class library. This seems to work OK with
the exception of one of the abstract member functions/pure virtual function
that uses a passed in pointer to a long.
Just using pointers in the C# library results in the expected: Pointers and
fixed size buffers may only be used in an unsafe context. And using the
'ref' keyword doesn't provide the correct function: no suitable method found
to override.
Any help would be greatly appreciated.
Thanks.
Bill
create a descendent class in a C# class library. This seems to work OK with
the exception of one of the abstract member functions/pure virtual function
that uses a passed in pointer to a long.
Just using pointers in the C# library results in the expected: Pointers and
fixed size buffers may only be used in an unsafe context. And using the
'ref' keyword doesn't provide the correct function: no suitable method found
to override.
Any help would be greatly appreciated.
Thanks.
Bill