V
vnb
when i Build the following sub-class of Socket i get the following error
message
No overload for method 'Socket' takes 0 arguments
can someone tell me how to overcome this problem
using System;
using System.Net.Sockets;
namespace NetClient
{
public class ConnectionSocket : Socket
{
public ConnectionSocket(AddressFamily af, SocketType st, ProtocolType pt)
{
}
}
}
message
No overload for method 'Socket' takes 0 arguments
can someone tell me how to overcome this problem
using System;
using System.Net.Sockets;
namespace NetClient
{
public class ConnectionSocket : Socket
{
public ConnectionSocket(AddressFamily af, SocketType st, ProtocolType pt)
{
}
}
}