public class mySocket : Socket
{
public mySocket() : base(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
{
}
}
I have some asyncronous connexion... and i got a error when i convert Socket to mySocket:
mySocket ms = (mySocket)cS;
mySocket ms = (mySocket)cS;
2 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
nonePosted Feb 4, 2010, 1:13 PM
Sam HobbsPosted Feb 4, 2010, 1:03 PM