基本信息
源码名称:c#一个简单的服务器和客户端的例子
源码大小:0.08M
文件格式:.zip
开发语言:C#
更新时间:2023-06-27
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
c#一个简单的服务器和客户端的例子
例子参考 c#入门经典一书 一个是服务器端的例子 一个是客户端的例子 TcpListener 和 TcpClient的使用


文件清单
└── c#一个简单的客户端和服务器端的例子
    ├── PictureClient
    │   ├── PictureClient
    │   │   ├── app.config
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── PictureClient.exe
    │   │   │       ├── PictureClient.exe.config
    │   │   │       ├── PictureClient.pdb
    │   │   │       ├── PictureClient.vshost.exe
    │   │   │       └── PictureClient.vshost.exe.config
    │   │   ├── obj
    │   │   │   └── x86
    │   │   │       └── Debug
    │   │   │           ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │           ├── GenerateResource.read.1.tlog
    │   │   │           ├── GenerateResource.write.1.tlog
    │   │   │           ├── PictureClient.csproj.FileListAbsolute.txt
    │   │   │           ├── PictureClient.exe
    │   │   │           ├── PictureClient.pdb
    │   │   │           ├── PictureClient.PictureClientForm.resources
    │   │   │           ├── PictureClient.Properties.Resources.resources
    │   │   │           └── TempPE
    │   │   ├── PictureClient.csproj
    │   │   ├── PictureClientForm.cs
    │   │   ├── PictureClientForm.Designer.cs
    │   │   ├── PictureClientForm.resx
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   └── ReadMe.txt
    │   ├── PictureClient.sln
    │   └── PictureClient.suo
    ├── PictureServer
    │   ├── PictureServer
    │   │   ├── app.config
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── PictureServer.exe
    │   │   │       ├── PictureServer.exe.config
    │   │   │       ├── PictureServer.pdb
    │   │   │       ├── PictureServer.vshost.exe
    │   │   │       └── PictureServer.vshost.exe.config
    │   │   ├── obj
    │   │   │   └── x86
    │   │   │       └── Debug
    │   │   │           ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │           ├── PictureServer.csproj.FileListAbsolute.txt
    │   │   │           ├── PictureServer.exe
    │   │   │           ├── PictureServer.pdb
    │   │   │           └── TempPE
    │   │   ├── PictureHelper.cs
    │   │   ├── PictureServer.csproj
    │   │   ├── Program.cs
    │   │   └── Properties
    │   │       ├── AssemblyInfo.cs
    │   │       ├── Settings.Designer.cs
    │   │       └── Settings.settings
    │   ├── PictureServer.sln
    │   └── PictureServer.suo
    └── ReadMe.txt

19 directories, 48 files