Help me with winsock

  • Thread starter Thread starter Nurchi BECHED
  • Start date Start date
N

Nurchi BECHED

Hello, All!

I am beginner in C#.
I just wanted to ask if you can recommend good online learning materials
with good examples.
I am interested in WinSocks.
Never used them before.
Want to learn.
Please help.

With best regards, Nurchi BECHED.
 
Nurchi BECHED said:
I am beginner in C#.
I just wanted to ask if you can recommend good online learning materials
with good examples.
I am interested in WinSocks.
Never used them before.
Want to learn.

Do you mean sockets in general, or do you particularly want to use
(say) the Winsock ActiveX control? If you're using .NET, you might as
well just use the Socket class - or TcpClient/TcpListener.
 
Hello, Jon!
You wrote on Sun, 25 Jul 2004 07:53:18 +0100:

I am trying to use the socket class. I've never done anything like that
before...
I am just trying to create a simplest application that would transfer data
over the network.
You know, install it on 2 computers and have them communicate...
Thanks.

??>> I am beginner in C#.
??>> I just wanted to ask if you can recommend good online learning
??>> materials with good examples. I am interested in WinSocks. Never used
??>> them before. Want to learn.

JSC> Do you mean sockets in general, or do you particularly want to use
JSC> (say) the Winsock ActiveX control? If you're using .NET, you might as
JSC> well just use the Socket class - or TcpClient/TcpListener.


With best regards, Nurchi BECHED.
 
Nurchi BECHED said:
Hello, Jon!
You wrote on Sun, 25 Jul 2004 07:53:18 +0100:

I am trying to use the socket class. I've never done anything like that
before...
I am just trying to create a simplest application that would transfer data
over the network.
You know, install it on 2 computers and have them communicate...
Thanks.

In that case, I'd suggest using TcpClient and TcpListener - there are
some good examples of how to use them in MSDN.
 
Back
Top