本文整理汇总了C#中IOrderedEnumerable.ToList方法的典型用法代码示例。如果您正苦于以下问题:C# IOrderedEnumerable.ToList方法的具体用法?C# IOrderedEnumerable.ToList怎么用?C# IOrderedEnumerable.ToList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IOrderedEnumerable
的用法示例。
在下文中一共展示了IOrderedEnumerable.ToList方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ComputeDisplayedPosition
public string ComputeDisplayedPosition(IOrderedEnumerable<Player> orderedPlayers, Player currentPlayer)
{
OrderedPlayers = orderedPlayers.ToList();
var indexOfPlayer = OrderedPlayers.IndexOf(currentPlayer);
if (indexOfPlayer == 0)
{
return GetPlayersPosition(currentPlayer).ToString();
}
var previousPlayer = OrderedPlayers.ElementAt(indexOfPlayer - 1);
if (currentPlayer.Points == previousPlayer.Points && currentPlayer.PointsPerGame == previousPlayer.PointsPerGame)
{
return string.Format("= {0}", GetPlayersPosition(currentPlayer));
}
return GetPlayersPosition(currentPlayer).ToString();
}
示例2: GetCardsForTrade
private decimal GetCardsForTrade(decimal actualValue, IOrderedEnumerable<MagicCard> purchaseCards, decimal runningValue)
{
var cardsSelected = new Dictionary<int, MagicCard>();
var remainingCount = TheirCollection.ToList.Count(p => p.CopiesOfCard > 0);
while (cardsSelected.Values.Sum(p => p.CopiesOfCard * p.BuyPrice) < actualValue && remainingCount > 0)
{
var card = GetCard(purchaseCards.ToList(), cardsSelected);
_logger.Trace("Selecting Card: " + card);
runningValue -= card.BuyPrice;
purchaseCards = TheirCollection.ToList.Where(p => p.BuyPrice < runningValue && p.CopiesOfCard > 0).OrderByDescending(p => p.BuyPrice);
remainingCount = TheirCollection.ToList.Count(p => p.CopiesOfCard > 0);
while (!purchaseCards.Any() && remainingCount > 0 && purchaseCards.Sum(p => p.BuyPrice*p.CopiesOfCard) < runningValue)
{
runningValue += (decimal) .10;
purchaseCards = TheirCollection.ToList.Where(p => p.BuyPrice < runningValue && p.CopiesOfCard > 0).OrderByDescending(p => p.BuyPrice);
}
}
MagicOnlineInterface.WriteWishListFile(cardsSelected);
MagicOnlineInterface.LoadWishList();
AutoItX.Sleep(5000);
MagicOnlineInterface.DetermineYouGetAmount();
if (MagicOnlineInterface.YouGetAmount != CardsYouGet.CountOfCards())
{
PopulateCardsYouGet();
}
return CardsYouGiveAmount - Credit - CardsYouGet.BuySum();
}
示例3: SetVisitHistory
public void SetVisitHistory(IOrderedEnumerable<VisitNote> visitNotes)
{
visitNotes.ToList().ForEach(note => VisitNotes.Add(note));
}
示例4: DrawIds
private void DrawIds(IOrderedEnumerable<Sprite> spritesToBeDrawn, Rectangle screenPosition)
{
var IdsToBeDrawn = CaptureIdsToBeDrawn(spritesToBeDrawn.ToList());
DebugTextManager.Draw(IdsToBeDrawn, Game, screenPosition);
}