I have defined an C# interface with a method that returns an object.
How do I define the implementation for this method in C++?
public interface ICOSP_9054_Connection
{
object getConnection( );
}
Or how can I declare an interface method in C# which returns a void* so I can implement the method in C++?
How do I define the implementation for this method in C++?
public interface ICOSP_9054_Connection
{
object getConnection( );
}
Or how can I declare an interface method in C# which returns a void* so I can implement the method in C++?