工作。我也想了解他們的指數查找重複和VS 2010 C#</p> <p>我有如下數組,我試圖尋找是否有數組中重複 索引號
red
red
Grey
Grey
red
blue
blue
Green
White
Grey
,我想陣列的每個值重複計數,例如:
red Count=2 index=0 (contain the duplicate cluster start index)
Grey Count=2 index=2
red Count=1 index=4
blue Count=2 index=5
Green Count=1 index=6
White Count=1 index=7
Grey Count=1 index=8
幫我解決我的波紋管語法全補上結果
var result = from p in a //a is the list
group p by p into g
select new { value=g.Key,count=g.Count()};
該代碼產生了什麼,您希望如何改變它? – CodeCaster 2014-11-21 16:25:53
@shamim - 你有機會看我的答案嗎? – 2014-11-23 09:09:55