求C#网络编程视频教程!!!!

来源:百度知道 编辑:UC知道 时间:2024/09/28 06:29:47
RT
我要的是System.NET命名空间下的那种哦.....
不要复制来忽悠我!!!!!!
有追加分!!!希望各位努力啦...我是找了好久都没找到 日
我要的是专门针对网络编程的视频教程 而不是C#的入门教程!!!! 而且要的也不是什么代码 我要的是视频
继续追加分 一直到有完美答案为止

何需视频?
1.简单服务器端
/*
using System.Data;
using System.Net.Sockets;
using System.Net;
using System.Threading;
*/
private static int port = %%2;
private static Thread thThreadRead;
private static TcpListener TcpListen;
private static bool bListener = true;
private static Socket stRead;
private static void Listen()
{
try
{
TcpListen = new TcpListener(port);
TcpListen.Start();
stRead = TcpListen.AcceptSocket();
EndPoint tempRemoteEP = stRead.RemoteEndPoint;
IPEndPoint tempRemoteIP = (IPEndPoint)tempRemoteEP;
IPHostEntry host = Dns.GetHostByAddress(tempRemoteIP.Address);
string sHostName = host.HostName;
while (bListener)
{
stRead.Send(Encoding