我有一個像Dictionary(TKey, TValue)
匿名類型
Dictionary<int, ArrayList> Deduction_Employees =
new Dictionary<int, ArrayList>();
,後來我添加到數組列表中的一個匿名類型喜歡這個
var day_and_type = new {
TheDay = myDay,
EntranceOrExit = isEntranceDelay
};
Deduction_Employees[Employee_ID].Add(day_and_type);
現在我怎樣才能拆箱是var和訪問這些屬性?
最大的問題是你爲什麼想要?你想達到什麼目的? – pdr