MapServer.PlayerObject.ClearHotKey C# (CSharp) Method

ClearHotKey() public method

public ClearHotKey ( byte group ) : void
group byte
return void
        public void ClearHotKey(byte group)
        {
            int i = mListHotKey.Count;
            if (i > 0)
            {
                while (true)
                {
                    i--;
                    if (mListHotKey[i].group == group)
                    {
                        mListHotKey.RemoveAt(i);
                    }
                    if (i <= 0) break;
                }
            }
        }