本文整理汇总了C#中GSM.CalculatePriceAllCalls方法的典型用法代码示例。如果您正苦于以下问题:C# GSM.CalculatePriceAllCalls方法的具体用法?C# GSM.CalculatePriceAllCalls怎么用?C# GSM.CalculatePriceAllCalls使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GSM
的用法示例。
在下文中一共展示了GSM.CalculatePriceAllCalls方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
GSM NokiaGSM = new GSM("Nokia", "NK", 180, "Gogo", new Battery("825L", 123, 100, BatteryType.LiIon), new Display(15, 1024));
NokiaGSM.AddCall(new Call(DateTime.Now, "088888888", 156));
NokiaGSM.AddCall(new Call(DateTime.Now.AddDays(3), "0888888899", 12));
NokiaGSM.AddCall(new Call(DateTime.Now.AddHours(1), "0888888344", 100));
NokiaGSM.AddCall(new Call(DateTime.Now.AddHours(56), "088883443", 1500));
decimal maxDuration = NokiaGSM.CallHistory[0].DurationInSeconds;
int positionMaxDurationCall = 0;
for (int i = 0; i < NokiaGSM.CallHistory.Count; i++)
{
Console.WriteLine("{0} call {1}",i+1, NokiaGSM.CallHistory[i]);
Console.WriteLine();
if (NokiaGSM.CallHistory[i].DurationInSeconds>maxDuration)
{
maxDuration = NokiaGSM.CallHistory[i].DurationInSeconds;
positionMaxDurationCall = i;
}
}
Console.WriteLine(new string('-', 50));
Console.Write("The total price of your {0} calls is: ", NokiaGSM.CallHistory.Count);
Console.WriteLine(NokiaGSM.CalculatePriceAllCalls(NokiaGSM.CallHistory, 0.37m));
NokiaGSM.RemoveCall(NokiaGSM.CallHistory[positionMaxDurationCall]);
Console.Write("The total price of your {0} calls without the longest one is: ", NokiaGSM.CallHistory.Count);
Console.WriteLine(NokiaGSM.CalculatePriceAllCalls(NokiaGSM.CallHistory, 0.37m));
NokiaGSM.ClearHistory(NokiaGSM.CallHistory);
Console.Write("After clearing the history, there are {0} calls.", NokiaGSM.CallHistory.Count);
Console.WriteLine();
}