Hi.
Basically I want to know if it is possible to implement a C++ header from a C# interface, because I can't make it work.
Example:
C# Interface: public interface A { void M( ushort u ); }
C++ header: public ref class B : A { void M( unsigned short u ); }
Returns "Error C3766".
Thanks in advance.