有沒有更好的方式來寫這個?最近我做了很多JavaScript之後,我覺得自己正在用C#生鏽。這可以改善嗎?LINQ?重構foreach
foreach (var item in this.CartItems)
{
if (item.EffectivePrice != null)
{
this.CartItems[this.CartItems.IndexOf(item)].EffectivePrice =
CurrencyHelper.GetLocalizedCurrency(item.EffectivePrice);
}
}
+1,我不確定這個問題是否非常適合LINQ。 – Sapph 2010-01-22 05:11:52