研讀 C# in Depth 之餘想到的點子:需要傳入欄位名稱當參數的場合,用 Lambda Expression o => o.PropName 取代名稱字串。
直接用範例展示。
假設我有個 Player 物件陣列:
public class Player
{
public str... Read More
↧