在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C# Socket编程入门实例.zip

C# Socket编程入门实例.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:0.30M
  • 下载次数:5
  • 浏览次数:103
  • 发布时间:2020-01-04
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】C# Socket编程入门实例,配合博文使用http://blog.csdn.net/mevicky/article/details/49000019

【实例截图】

from clipboard

【核心代码】

C:.
│  test.mdb
│  解释.txt

├─001ServerConsole
│  │  ServerConsole.sln
│  │
│  └─ServerConsole
│      │  App.config
│      │  Program.cs
│      │  ServerConsole.csproj
│      │
│      ├─bin
│      │  └─Debug
│      │          ServerConsole.exe
│      │          ServerConsole.exe.config
│      │          ServerConsole.pdb
│      │          ServerConsole.vshost.exe
│      │          ServerConsole.vshost.exe.config
│      │          ServerConsole.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │  ServerConsole.csproj.FileListAbsolute.txt
│      │          │  ServerConsole.exe
│      │          │  ServerConsole.pdb
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

├─002ClientConsole
│  └─ClientConsole
│      │  App.config
│      │  ClientConsole.csproj
│      │  Program.cs
│      │
│      ├─bin
│      │  └─Debug
│      │          ClientConsole.exe
│      │          ClientConsole.exe.config
│      │          ClientConsole.pdb
│      │          ClientConsole.vshost.exe
│      │          ClientConsole.vshost.exe.config
│      │          ClientConsole.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  ClientConsole.csproj.FileListAbsolute.txt
│      │          │  ClientConsole.exe
│      │          │  ClientConsole.pdb
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

├─003ClientSendAndServerAccept
│  ├─Client
│  │  │  App.config
│  │  │  Client.csproj
│  │  │  Program.cs
│  │  │
│  │  ├─bin
│  │  │  └─Debug
│  │  │          Client.exe
│  │  │          Client.exe.config
│  │  │          Client.pdb
│  │  │          Client.vshost.exe
│  │  │          Client.vshost.exe.config
│  │  │          Client.vshost.exe.manifest
│  │  │
│  │  ├─obj
│  │  │  └─x86
│  │  │      └─Debug
│  │  │          │  Client.csproj.FileListAbsolute.txt
│  │  │          │  Client.exe
│  │  │          │  Client.pdb
│  │  │          │  DesignTimeResolveAssemblyReferencesInput.cache
│  │  │          │
│  │  │          └─TempPE
│  │  └─Properties
│  │          AssemblyInfo.cs
│  │
│  └─Server
│      │  App.config
│      │  Program.cs
│      │  Server.csproj
│      │
│      ├─bin
│      │  └─Debug
│      │          Server.exe
│      │          Server.exe.config
│      │          Server.pdb
│      │          Server.vshost.exe
│      │          Server.vshost.exe.config
│      │          Server.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │  Server.csproj.FileListAbsolute.txt
│      │          │  Server.exe
│      │          │  Server.pdb
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

├─004ClientSendManyAndServerAcceptMany
│  ├─ClientMany
│  │  │  App.config
│  │  │  ClientMany.csproj
│  │  │  Program.cs
│  │  │
│  │  ├─bin
│  │  │  └─Debug
│  │  │          ClientMany.exe
│  │  │          ClientMany.exe.config
│  │  │          ClientMany.pdb
│  │  │          ClientMany.vshost.exe
│  │  │          ClientMany.vshost.exe.config
│  │  │          ClientMany.vshost.exe.manifest
│  │  │
│  │  ├─obj
│  │  │  └─x86
│  │  │      └─Debug
│  │  │          │  ClientMany.csproj.FileListAbsolute.txt
│  │  │          │  ClientMany.exe
│  │  │          │  ClientMany.pdb
│  │  │          │  DesignTimeResolveAssemblyReferencesInput.cache
│  │  │          │
│  │  │          └─TempPE
│  │  └─Properties
│  │          AssemblyInfo.cs
│  │
│  └─ServerMany
│      │  App.config
│      │  Program.cs
│      │  ServerMany.csproj
│      │
│      ├─bin
│      │  └─Debug
│      │          ServerMany.exe
│      │          ServerMany.exe.config
│      │          ServerMany.pdb
│      │          ServerMany.vshost.exe
│      │          ServerMany.vshost.exe.config
│      │          ServerMany.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │  ServerMany.csproj.FileListAbsolute.txt
│      │          │  ServerMany.exe
│      │          │  ServerMany.pdb
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

├─005ClientSendManySelfAndServerAcceptManySelf
│  ├─ClientManySelf
│  │  │  App.config
│  │  │  ClientManySelf.csproj
│  │  │  Program.cs
│  │  │
│  │  ├─bin
│  │  │  └─Debug
│  │  │          ClientManySelf.exe
│  │  │          ClientManySelf.exe.config
│  │  │          ClientManySelf.pdb
│  │  │          ClientManySelf.vshost.exe
│  │  │          ClientManySelf.vshost.exe.config
│  │  │          ClientManySelf.vshost.exe.manifest
│  │  │
│  │  ├─obj
│  │  │  └─x86
│  │  │      └─Debug
│  │  │          │  ClientManySelf.csproj.FileListAbsolute.txt
│  │  │          │  ClientManySelf.exe
│  │  │          │  ClientManySelf.pdb
│  │  │          │  DesignTimeResolveAssemblyReferencesInput.cache
│  │  │          │
│  │  │          └─TempPE
│  │  └─Properties
│  │          AssemblyInfo.cs
│  │
│  └─ServerManySelf
│      │  App.config
│      │  Program.cs
│      │  ServerManySelf.csproj
│      │
│      ├─bin
│      │  └─Debug
│      │          ServerManySelf.exe
│      │          ServerManySelf.exe.config
│      │          ServerManySelf.pdb
│      │          ServerManySelf.vshost.exe
│      │          ServerManySelf.vshost.exe.config
│      │          ServerManySelf.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │  ServerManySelf.csproj.FileListAbsolute.txt
│      │          │  ServerManySelf.exe
│      │          │  ServerManySelf.pdb
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

├─006ClientSendSQLAndServerAcceptSQL
│  ├─ClientSQL
│  │  │  App.config
│  │  │  ClientSQL.csproj
│  │  │  Program.cs
│  │  │
│  │  ├─bin
│  │  │  └─Debug
│  │  │          ClientSQL.exe
│  │  │          ClientSQL.exe.config
│  │  │          ClientSQL.pdb
│  │  │          ClientSQL.vshost.exe
│  │  │          ClientSQL.vshost.exe.config
│  │  │          ClientSQL.vshost.exe.manifest
│  │  │
│  │  ├─obj
│  │  │  └─x86
│  │  │      └─Debug
│  │  │          │  ClientSQL.csproj.FileListAbsolute.txt
│  │  │          │  ClientSQL.exe
│  │  │          │  ClientSQL.pdb
│  │  │          │  DesignTimeResolveAssemblyReferencesInput.cache
│  │  │          │
│  │  │          └─TempPE
│  │  └─Properties
│  │          AssemblyInfo.cs
│  │
│  └─ServerSQL
│      │  App.config
│      │  Program.cs
│      │  ServerSQL.csproj
│      │
│      ├─bin
│      │  └─Debug
│      │          ServerSQL.exe
│      │          ServerSQL.exe.config
│      │          ServerSQL.pdb
│      │          ServerSQL.vshost.exe
│      │          ServerSQL.vshost.exe.config
│      │          ServerSQL.vshost.exe.manifest
│      │
│      ├─obj
│      │  └─x86
│      │      └─Debug
│      │          │  DesignTimeResolveAssemblyReferencesInput.cache
│      │          │  ServerSQL.csproj.FileListAbsolute.txt
│      │          │  ServerSQL.csprojResolveAssemblyReference.cache
│      │          │  ServerSQL.exe
│      │          │  ServerSQL.pdb
│      │          │
│      │          └─TempPE
│      └─Properties
│              AssemblyInfo.cs

└─007ServerSendAndClientAccept
    ├─ClientAccept
    │  │  App.config
    │  │  ClientAccept.csproj
    │  │  Program.cs
    │  │
    │  ├─bin
    │  │  └─Debug
    │  │          ClientAccept.exe
    │  │          ClientAccept.exe.config
    │  │          ClientAccept.pdb
    │  │          ClientAccept.vshost.exe
    │  │          ClientAccept.vshost.exe.config
    │  │          ClientAccept.vshost.exe.manifest
    │  │
    │  ├─obj
    │  │  └─x86
    │  │      └─Debug
    │  │          │  ClientAccept.csproj.FileListAbsolute.txt
    │  │          │  ClientAccept.exe
    │  │          │  ClientAccept.pdb
    │  │          │  DesignTimeResolveAssemblyReferencesInput.cache
    │  │          │
    │  │          └─TempPE
    │  └─Properties
    │          AssemblyInfo.cs
    │
    └─ServerSend
        │  App.config
        │  Program.cs
        │  ServerSend.csproj
        │
        ├─bin
        │  └─Debug
        │          ServerSend.exe
        │          ServerSend.exe.config
        │          ServerSend.pdb
        │          ServerSend.vshost.exe
        │          ServerSend.vshost.exe.config
        │          ServerSend.vshost.exe.manifest
        │
        ├─obj
        │  └─x86
        │      └─Debug
        │          │  DesignTimeResolveAssemblyReferencesInput.cache
        │          │  ServerSend.csproj.FileListAbsolute.txt
        │          │  ServerSend.exe
        │          │  ServerSend.pdb
        │          │
        │          └─TempPE
        └─Properties
                AssemblyInfo.cs

标签:

实例下载地址

C# Socket编程入门实例.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警