本文整理匯總了C#中Model.List.Sum方法的典型用法代碼示例。如果您正苦於以下問題:C# List.Sum方法的具體用法?C# List.Sum怎麽用?C# List.Sum使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Model.List
的用法示例。
在下文中一共展示了List.Sum方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ScheduleTalks
/// <summary>
/// Schedules the unscheduled talks.
/// </summary>
/// <param name="unscheduledTalks">The unscheduled talks.</param>
public bool ScheduleTalks(List<ITalk> unscheduledTalks)
{
while (RemainingDuration > 0)
{
if (unscheduledTalks.Count == 0)
break;
/* To handle the case when talks remain after utilizing the buffers. Just send
* in the unscheduled talks total time if it is less than remaining duration.*/
int remainingUnscheduledTime = unscheduledTalks.Sum(talk => talk.Duration);
int remainingDuration = Math.Min(remainingUnscheduledTime, RemainingDuration);
var scheduledTalks = TalkScheduler.Instance.ScheduleTalks(unscheduledTalks, remainingDuration);
if (scheduledTalks == null) return false;//Condition met when there is no subsets with exact sum.
AddTalks(scheduledTalks, unscheduledTalks);
}
return true;
}