⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 server.cs

📁 這是Visual c# 2003開發的WINCE Xscale和PC的聊天室程序
💻 CS
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Threading; //Threadノ
using System.Net.Sockets; //Socketノ
using System.IO; //Streamノ
using System.Text; //Ascii秆絏ノ
using System.Net; //陪ボセ诀IPノ
namespace ChatServer
{
    public class Server : System.Windows.Forms.Form
    {
        private System.Windows.Forms.TextBox inputTextBox;
        private System.Windows.Forms.TextBox displayTextBox;
		private System.Windows.Forms.PictureBox pictureBox1;

		private Socket connection;
		private Thread readThread;
		private Hashtable clientTable = new Hashtable();
		private Hashtable writersTable = new Hashtable();
		private System.ComponentModel.Container components = null;
		int counter = 0; //硈絬璸计
		bool FILE_MODE=false; //琌

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -