コード例 #1
0
ファイル: InventoryLists.cs プロジェクト: UpjdTeam/PPSolution
        public Inventory Item(int index)
        {
            if (InventoryItems != null && InventoryItems.Any())
            {
                return(InventoryItems.ElementAt(index));
            }

            return(null);
        }