簡體   English   中英

linq獲取數組元素查詢

[英]linq get array elements query

我只想用dictionary中等於零的元素創建一個值array

Dictionary<string, int> dict = new Dictionary<string, int>();
int notZeroValues = dict.Values.ToArray();  //sth here to get these elements efficiently

請幫忙?

dict.Where(x => x.Value != 0).Select(x => x.Value).ToArray();

其他方式:

dict.Values.OfType<int>().Where(x => x != 0).ToArray();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM