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

📄 propertystatic.cs

📁 网络考试系统 系统基于 .NET 框架开发
💻 CS
字号:
using System;

//序列化
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary ;

namespace ExamSystem
{
	/// <summary>
	/// PropertyStatic 的摘要说明。
	/// </summary>
	[Serializable]
	public class PropertyStatic
	{
		public PropertyStatic(){}

		public string[] clientIPs = new string[5];
		public string[] clientNas = new string[5];
		public string   timeOuts  = "10";
		public string   localIP   = "";
		public string   serverIP  = "";
	}
}

⌨️ 快捷键说明

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