C#利用VUDP.cs开发网络通讯应用例程
2021-06-15 23:06
标签:tar for 协议 ali pen href 实例化 udp convert VClassLib-CS项目Github地址:https://github.com/velscode/VClassLib-CS VUDP类可以帮助您快速搭建需要使用UDP协议进行网络通讯的应用 UI设计 实例化 编写监听线程方法 开启监听按钮 发送按钮 C#利用VUDP.cs开发网络通讯应用例程 标签:tar for 协议 ali pen href 实例化 udp convert 原文地址:https://www.cnblogs.com/velscode/p/10355259.html
VUDP文档地址:https://github.com/velscode/VClassLib-CS/blob/master/VUDP/VUDP_Docs.md概述
VUDP v = new VUDP();
private void RecvThread()
{
while(true)
{
try
{
byte[] data = v.ReceiveData();
for(int i =0; i
private void button_StartRecv_Click(object sender, EventArgs e)
{
//配置参数
v.localIP = textBox_LocalIP.Text;
v.localport = Convert.ToInt32(textBox_LocalPort.Text);
v.OpenRecv();
//启动监听线程
Thread recvThread = new Thread(RecvThread);
recvThread.IsBackground = true;
recvThread.Start();
}
private void button_Send_Click(object sender, EventArgs e)
{
v.remoteIP = textBox_RemoteIP.Text;
v.remoteport = Convert.ToInt32(textBox_RemotePort.Text);
v.SendData(textBox_Send.Text);
}
运行演示
上一篇:Windows系统对拍程序
文章标题:C#利用VUDP.cs开发网络通讯应用例程
文章链接:http://soscw.com/index.php/essay/94329.html