2009-10-05 26 views

回答

2

你的意思是你想要所有的值,按內部值排序?

from outerPair in outer 
from innerPair in outerPair.Value 
orderby innerPair.Value 
select new { 
    OuterKey = outerPair.Key, 
    InnerKey = innerPair.Key, 
    Value = innerPair.Value 
}; 
+0

是的!謝謝!!!!! – DDiVita

+3

心理調試在行動;-p –

相關問題