資源簡介
代碼片段和文件信息
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個文件信息
評論
共有 條評論