Hi,
I get an error when trying to compile a class that I have created: "EWrapperImpl.cs"
Error: TestCsharp.EWrapperImpl' does not implement interface member 'IBApi.EWrapper.currentTime(long)
It is documented in an example that: "you need to provide at least an empty shell of the method declared in EWrapper"
but I don't know how to do this. I wonder if it is a basic delaration that can be done in EWrapper ?
namespace TestCsharp
{
public class EWrapperImpl : EWrapper
{
EClientSocket clientSocket;
private int nextOrderId;
public EWrapperImpl()
{
clientSocket = new EClientSocket(this);
}
public EClientSocket ClientSocket
{
get { return clientSocket; }
set { clientSocket = value; }
}
}
}