任何人都可以幫助我將這段代碼改回一個簡單的for循環嗎?逆向工程聚合爲一個簡單的for循環
public class sT
{
public string[] Description { get; set; }
}
text = sT.Description.Aggregate(text, (current, description) =>
current + ("<option value=" + string.Format("{0:00}", j) + "'>" + j++ + ". " + description+ "</option>"));
代碼遍歷數組「元素」的元素並創建一個選項列表。我想做一些不同的處理,但我不知道如何對此進行反向工程。任何建議將非常受歡迎。
你的意思是,重寫,而不是反向工程。此外,[XY問題]的經典案例(http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem);你爲什麼不告訴我們你需要做什麼不同的處理? – sehe
「價值」屬性的值可能會錯過開盤報價 – sehe