extensionfactoryclass.cs

来自「该项目中对 SQLHelper 类进行了简单封装」· CS 代码 · 共 65 行

CS
65
字号
/* 
 * ExtensionGroupClass.cs @Microsoft Visual Studio 2005 <.NET Framework 2.0>
 * AfritXia
 * 2007-12-10
 * 
 * Copyright(c) http://www.AfritXia.NET/
 * 
 */

using System;

namespace NET.AfritXia.MyHome.SystemConf
{
	/// <summary>
	/// 扩展工厂节点数据模型
	/// </summary>
	public class ExtensionFactoryClass
	{
		// 优先级
		private int m_priority;
		// 扩展工厂类型
		private Type m_factoryType;

		#region 类 ExtensionGroupClass 构造器
		/// <summary>
		/// 类 ExtensionGroupClass 默认构造器
		/// </summary>
		public ExtensionFactoryClass()
		{
		}
		#endregion

		/// <summary>
		/// 设置或获取优先级
		/// </summary>
		public int Priority
		{
			set
			{
				this.m_priority = value;
			}

			get
			{
				return this.m_priority;
			}
		}

		/// <summary>
		/// 设置或获取扩展工厂类型
		/// </summary>
		public Type FactoryType
		{
			set
			{
				this.m_factoryType = value;
			}

			get
			{
				return this.m_factoryType;
			}
		}
	}
}

⌨️ 快捷键说明

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