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

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

private ConvertToItem ( int id, byte slots, short amount, byte index ) : slotItem
id int
slots byte
amount short
index byte
Результат DarkEmu_GameServer.Global.slotItem
        Global.slotItem ConvertToItem(int id, byte slots, short amount, byte index)
        {
            #region Arrow convert info
            Global.slotItem slot = new DarkEmu_GameServer.Global.slotItem();
            slot.ID = id;
            slot.Slot = slots;
            slot.Amount = amount;
            return slot;
            #endregion
        }
Systems