DarkEmu_GameServer.Systems.GetCheckFreeSlot C# (CSharp) Метод

GetCheckFreeSlot() приватный Метод

private GetCheckFreeSlot ( List b, byte bs ) : bool
b List
bs byte
Результат bool
        bool GetCheckFreeSlot(List<byte> b, byte bs)
        {
            #region Return free slots
            bool result = b.Exists(
                    delegate(byte bk)
                    {
                        return bk == bs;
                    }
                    );
            return result;
            #endregion
        }
Systems