server.cs

来自「這是Visual c# 2003開發的WINCE Xscale和PC的聊天室程序」· CS 代码 · 共 25 行

CS
25
字号
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 + =
减小字号Ctrl + -
显示快捷键?