Hello, I got a error 'Does not implement interface member'
I search around the net and try a lots of solutions, both did not works for me.
How can I fix this problem ?
'Browser.CoreServer' does not implement interface member 'browser.iDataConnection.tcpclient'
...
namespace Browser
{
public interface iDataConnection
{
TcpClient tcpclient { get; set; }
StreamReader streamReader_connect { get; set; }
StreamWriter streamWriter_connect { get; set; }
NetworkStream networkStream_connect { get; set; }
}
public class CoreServer : iDataConnection <-- Error at this line
{
iDataConnection dc = new CoreServer();
}
public partial class Browser : Form
{}
}