C# UDP发送消息IP端口
时间: 2023-07-27 07:23:02 浏览: 150
在 C# 中使用 UDP 发送消息需要指定目标 IP 地址和端口号,可以使用 UdpClient 类来实现。以下是一个简单的示例代码:
```csharp
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
class Program
{
static void Main(string[] args)
{
// 目标 IP 地址和端口号
string ip = "192.168.0.100";
int port = 12345;
// 创建 UDP 客户端
UdpClient udpClient = new UdpClient();
// 发送消息
string message = "Hello, World!";
byte[] buffer = Encoding.UTF8.GetBytes(message);
IPEndPoint remoteEP = new IPEndPoint(IPAddress.Parse(ip), port);
udpClient.Send(buffer, buffer.Length, remoteEP);
// 关闭 UDP 客户端
udpClient.Close();
}
}
```
在上面的代码中,我们首先定义了目标 IP 地址和端口号,然后创建了一个 UdpClient 对象。接着将要发送的消息转换成字节数组,指定目标 IP 地址和端口号,最后调用 Send 方法发送消息。发送完成后,关闭 UDP 客户端。
阅读全文