本文整理汇总了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 });
}
}
示例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;
}