資源簡介
c#實現的udp通信,及客戶端之間直接通信,源碼 適合初入門的同學學習
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
//添加的命名空間引用
using?System.Net;
using?System.Net.Sockets;
using?System.Threading;
namespace?AsyncUdpChatExample
{
????public?partial?class?FormAsyncChat?:?Form
????{
????????delegate?void?AddListBoxItemCallback(string?text);
????????AddListBoxItemCallback?listBoxCallback;
????????//使用的接收端口號
????????private?int?port?=?8001;
????????//接收信息用UdpClient實例
????????UdpClient?receiveClient;
????????IPEndPoint?iep;
????????String?sendMessage;
????????public?FormAsyncChat()
????????{
????????????InitializeComponent();
????????????listBoxCallback?=?new?AddListBoxItemCallback(AddListBoxItem);
????????}
????????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????5140??2013-04-07?11:16??Chap6UDP\AsyncUdpChatExample\AsyncUdpChatExample.csproj
?????文件????????452??2013-04-07?11:16??Chap6UDP\AsyncUdpChatExample\AsyncUdpChatExample.csproj.user
?????文件??????13824??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\bin\Debug\AsyncUdpChatExample.exe
?????文件??????62976??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\bin\Debug\AsyncUdpChatExample.pdb
?????文件??????11608??2013-10-14?15:23??Chap6UDP\AsyncUdpChatExample\bin\Debug\AsyncUdpChatExample.vshost.exe
?????文件????????490??2009-08-31?00:40??Chap6UDP\AsyncUdpChatExample\bin\Debug\AsyncUdpChatExample.vshost.exe.manifest
?????文件??????11776??2008-11-30?16:48??Chap6UDP\AsyncUdpChatExample\bin\Debug\UdpChatExample.exe
?????文件??????44544??2008-11-30?16:48??Chap6UDP\AsyncUdpChatExample\bin\Debug\UdpChatExample.pdb
?????文件????????490??2007-07-21?01:33??Chap6UDP\AsyncUdpChatExample\bin\Debug\UdpChatExample.vshost.exe.manifest
?????文件???????7024??2009-07-17?16:37??Chap6UDP\AsyncUdpChatExample\FormAsyncChat.cs
?????文件???????7056??2009-07-16?22:46??Chap6UDP\AsyncUdpChatExample\FormAsyncChat.Designer.cs
?????文件???????5814??2009-07-16?22:46??Chap6UDP\AsyncUdpChatExample\FormAsyncChat.resx
?????文件??????12096??2013-10-14?15:23??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.csproj.FileListAbsolute.txt
?????文件????????916??2009-07-16?22:49??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.csproj.GenerateResource.Cache
?????文件??????13824??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.exe
?????文件????????180??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.FormAsyncChat.resources
?????文件??????62976??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.pdb
?????文件????????180??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\AsyncUdpChatExample.Properties.Resources.resources
?????文件???????5404??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件????????926??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\GenerateResource-ResGen.read.1.tlog
?????文件???????1482??2013-10-13?10:25??Chap6UDP\AsyncUdpChatExample\obj\Debug\GenerateResource-ResGen.write.1.tlog
?????文件???????4608??2013-04-07?11:16??Chap6UDP\AsyncUdpChatExample\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件???????1190??2008-11-30?16:49??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.csproj.FileListAbsolute.txt
?????文件????????850??2008-11-29?13:57??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.csproj.GenerateResource.Cache
?????文件??????11776??2008-11-30?16:48??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.exe
?????文件????????180??2008-11-29?09:13??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.FormChat.resources
?????文件??????44544??2008-11-30?16:48??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.pdb
?????文件????????180??2008-11-29?09:13??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample.Properties.Resources.resources
?????文件????????845??2006-02-04?11:41??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample1.csproj.GenerateResource.Cache
?????文件????????180??2006-02-04?11:41??Chap6UDP\AsyncUdpChatExample\obj\Debug\UdpChatExample1.FormChat.resources
............此處省略247個文件信息
- 上一篇:socket實現多客戶端與服務器連接通信
- 下一篇:多用戶之間通信
評論
共有 條評論