How to do “nothing” in the else part of ternary operator

核能气质少年 提交于 2019-12-13 06:01:35

问题


I want to filter values of a list based on whether or not they are contained in some other list. If an element is in the list I will select it, else I want to skip it or basically do nothing.

Below is what I tried to do. How can I achieve this?

List<string> sheetNames = new List<string>() {"1","10"};
List<string> projects= new List<string>() {"1","2","3","4","5","6","7"};

IEnumerable<string> result =  
    sheetNames.Select(x => projects.Contains(x) 
                               ? x 
                               : /*Want to do nothing here */);

回答1:


You can use Enumerable.Intersect method to get the common values from the two lists.

IEnumerable<string> commonValues = projects.Intersect(sheetNames);



回答2:


List<string> sheetNames = new List<string>() {"1","10"};
List<string> projects= new List<string>() {"1","2","3","4","5","6","7"};

IEnumerable<string> result = sheetNames.Where(x => projects.Contains(x));


来源:https://stackoverflow.com/questions/20947215/how-to-do-nothing-in-the-else-part-of-ternary-operator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!