コード例 #1
0
        private ImmutableList <I> GetItems(string itemType)
        {
            LazyItemList itemList = GetItemList(itemType);

            if (itemList == null)
            {
                return(ImmutableList <I> .Empty);
            }

            return(itemList.GetMatchedItems(ImmutableHashSet <string> .Empty));
        }