tableoptionsinfo.cs

来自「一个通用的数据库访问层」· CS 代码 · 共 27 行

CS
27
字号
using System;

namespace YariSoft.DBCommander.Misc
{
	[Serializable]
	public class TableOptionsInfo
	{
		#region Local variables
		private bool	_identityOff			= false;
		#endregion

		#region Properties
		public bool IdentityOff
		{
			get{ return this._identityOff; }
			set{ this._identityOff = value; }
		}
		#endregion

		#region Constructor/Destructor
		public TableOptionsInfo()
		{
		}
		#endregion
	}
}

⌨️ 快捷键说明

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