当前位置: 首页>>代码示例>>C#>>正文


C# CacheList.Exists方法代码示例

本文整理汇总了C#中CacheList.Exists方法的典型用法代码示例。如果您正苦于以下问题:C# CacheList.Exists方法的具体用法?C# CacheList.Exists怎么用?C# CacheList.Exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CacheList的用法示例。


在下文中一共展示了CacheList.Exists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetRandomItem

        private static void SetRandomItem(CacheList<MysteryShops> mysteryList, List<ItemType> itemList, DateTime nextDate)
        {
            foreach (ItemType itemType in itemList)
            {
                List<ItemBaseInfo> itemArray = new ConfigCacheSet<ItemBaseInfo>().FindAll(u => u.IsMystery == 1 && u.ItemType == itemType);
                if (itemArray.Count == 0)
                {
                    throw new Exception("刷新神秘商店出错:物品" + itemType + "类型不存在");
                }
                ItemBaseInfo itemInfo = itemArray[RandomUtils.GetRandom(0, itemArray.Count)];

                if (mysteryList.Exists(m => m.ItemID == itemInfo.ItemID))
                {
                    itemArray = new ConfigCacheSet<ItemBaseInfo>().FindAll(u => u.IsMystery == 1 && u.ItemID != itemInfo.ItemID && u.ItemType == itemType);
                    if (itemArray.Count == 0)
                    {
                        throw new Exception("刷新神秘商店出错:物品" + itemType + "类型不存在");
                    }
                    itemInfo = itemArray[RandomUtils.GetRandom(0, itemArray.Count)];
                }

                mysteryList.Add(new MysteryShops() { ItemID = itemInfo.ItemID, NextDate = nextDate, BuyNum = 0, ItemNum = itemInfo.MysteryNum });

            }
        }
开发者ID:rongxiong,项目名称:Scut,代码行数:25,代码来源:UserHelper.cs

示例2: RandomAbilityProperty

 private static SparePartProperty RandomAbilityProperty(SparePartInfo partInfo, CacheList<SparePartProperty> ignorePropertys)
 {
     var tempPropertys = new List<SparePartProperty>();
     foreach (var property in partInfo.PropertyRange)
     {
         if (ignorePropertys != null
             && ignorePropertys.Exists(m => m != null && m.AbilityType.Equals(property.AbilityType))
            )
         {
             continue;
         }
         tempPropertys.Add(property);
     }
     int index = RandomUtils.GetRandom(0, tempPropertys.Count);
     return index < tempPropertys.Count ? tempPropertys[index] : null;
 }
开发者ID:rongxiong,项目名称:Scut,代码行数:16,代码来源:UserSparePart.cs


注:本文中的CacheList.Exists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。