using System; namespace XMainClient { internal class XOnComboChangeEventArgs : XEventArgs { public uint ComboCount = 0u; public XOnComboChangeEventArgs() { this._eDefine = XEventDefine.XEvent_ComboChange; } public override void Recycle() { base.Recycle(); this.ComboCount = 0u; XEventPool.Recycle(this); } } }