嘿,我被困在將簡單的Linq語句從查詢語法轉換爲流暢的C#語法。我認爲這是可能的,但我需要一個提示。將LINQ語句從查詢轉換爲流暢的c#語法
from property in target.GetType().GetProperties()
select new
{
Name = property.Name,
Value = property.GetValue(target, null)
};
到..
var props = target.GetType().GetProperties().Select(p=>p.Name....)
我需要Select
後更改?
你到底在問什麼? – driis 2011-05-11 20:16:44
'....'是我的問題。對不清楚的問題抱歉。我的編輯正確 – Custodio 2011-05-11 20:33:01