资源简介
c#网络编程实例服务器版
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace ConsoleApplicationserive
{
class Program
{
private static byte[] result = new byte[1024];
private static int myProt = 8885; //监听的端口
static Socket serverSocket; //创建socket
static void Main(string[] args)
{
//服务器IP地址
IPAddress ip = IPAddress.Parse(“127.0.0.1“);
serverSocket = new Socket(AddressFamily.InterNetwork SocketType.Stream ProtocolType.Tcp);
serverSocket.Bind(new IPEndPoint(ip myProt)); //绑定IP地址:端口
serverSocket.Listen(10); //设
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1041 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive.sln
文件 37376 2015-07-22 11:22 ConsoleApplicationserive\ConsoleApplicationserive.v12.suo
目录 0 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\
文件 187 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\App.config
目录 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\bin\
目录 0 2015-05-19 15:56 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\
文件 6144 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.exe
文件 187 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.exe.config
文件 13824 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.pdb
文件 23168 2015-07-21 16:45 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.vshost.exe
文件 187 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.vshost.exe.config
文件 490 2013-06-18 20:28 ConsoleApplicationserive\ConsoleApplicationserive\bin\Debug\ConsoleApplicationserive.vshost.exe.manifest
文件 2590 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\ConsoleApplicationserive.csproj
目录 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\obj\
目录 0 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\
文件 898 2015-07-21 16:45 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\ConsoleApplicationserive.csproj.FileListAbsolute.txt
文件 1755 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\ConsoleApplicationserive.csprojResolveAssemblyReference.cache
文件 6144 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\ConsoleApplicationserive.exe
文件 13824 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\ConsoleApplicationserive.pdb
文件 6749 2015-05-19 16:11 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
目录 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\obj\Debug\TempPE\
文件 3828 2015-07-09 14:26 ConsoleApplicationserive\ConsoleApplicationserive\Program.cs
目录 0 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\Properties\
文件 1460 2015-05-19 15:54 ConsoleApplicationserive\ConsoleApplicationserive\Properties\AssemblyInfo.cs
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- pop3lib类库 +(这个不错) 附完整
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 猜数小游戏WCF网络编程技术(附服务
- 《C#版Ftp软件源码》
- 多种方法监测网络是否连接
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
- 积木效果显示图像
- C# 隐形窗体 (没有边框,没有标题栏
评论
共有 条评论