• 大小: 0.26M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: c  源码  .NET  UDP  NET  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Text;
using System.Net;
using System.Net.Sockets;

namespace ClientDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            byte[] data = new byte[1024];
            string input stringData;

            //构建TCP 服务器
            Console.WriteLine(“This is a Client host name is {0}“ Dns.GetHostName());

            //设置服务IP,设置TCP端口号
            IPEndPoint ip = new IPEndPoint(IPAddress.Parse(“127.0.0.1“) 8001);

            //定义网络类型,数据连接类型和网络协议UDP
            Socket server = new Socket(AddressFamily.InterNetwork SocketType.Dgram ProtocolType.Udp);

            string welcome = “你好! “;
            data = Encoding.UTF8.GetBytes(welcome);
            server.SendTo(data data.Length SocketFlags.None ip

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-17 22:49  .vs\
     目录           0  2018-09-17 22:57  .vs\UdpDemo\
     目录           0  2018-09-17 22:57  .vs\UdpDemo\DesignTimeBuild\
     文件      372126  2018-09-17 22:57  .vs\UdpDemo\DesignTimeBuild\.dtbcache
     目录           0  2018-09-17 22:49  .vs\UdpDemo\v15\
     文件       34816  2018-09-17 22:57  .vs\UdpDemo\v15\.suo
     目录           0  2018-09-17 22:49  .vs\UdpDemo\v15\Server\
     目录           0  2018-09-17 22:49  .vs\UdpDemo\v15\Server\sqlite3\
     文件           0  2018-09-17 22:49  .vs\UdpDemo\v15\Server\sqlite3\db.lock
     文件        4096  2018-09-17 22:49  .vs\UdpDemo\v15\Server\sqlite3\storage.ide
     文件       32768  2018-09-17 22:49  .vs\UdpDemo\v15\Server\sqlite3\storage.ide-shm
     文件     1120672  2018-09-17 22:51  .vs\UdpDemo\v15\Server\sqlite3\storage.ide-wal
     目录           0  2018-09-17 22:51  Client\
     文件         178  2018-09-17 22:49  Client\ClientDemo.csproj
     文件        2224  2018-09-17 22:51  Client\Program.cs
     目录           0  2018-09-17 22:49  Client\bin\
     目录           0  2018-09-17 22:49  Client\bin\Debug\
     目录           0  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\
     文件         462  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\ClientDemo.deps.json
     文件        5632  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\ClientDemo.dll
     文件         920  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\ClientDemo.pdb
     文件         252  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\ClientDemo.runtimeconfig.dev.json
     文件         154  2018-09-17 22:51  Client\bin\Debug\netcoreapp2.1\ClientDemo.runtimeconfig.json
     目录           0  2018-09-17 22:51  Client\obj\
     文件         149  2018-09-17 22:49  Client\obj\Client.csproj.nuget.cache
     文件        1578  2018-09-17 22:49  Client\obj\Client.csproj.nuget.g.props
     文件         923  2018-09-17 22:49  Client\obj\Client.csproj.nuget.g.targets
     文件         149  2018-09-17 22:51  Client\obj\ClientDemo.csproj.nuget.cache
     文件        1578  2018-09-17 22:51  Client\obj\ClientDemo.csproj.nuget.g.props
     文件         923  2018-09-17 22:51  Client\obj\ClientDemo.csproj.nuget.g.targets
     目录           0  2018-09-17 22:49  Client\obj\Debug\
............此处省略48个文件信息

评论

共有 条评论