在我的应用程序中,我希望程序搜索列表,测试每个列表元素。如果列表元素是所需的长度,那么我希望将其插入到新列表中。下面是我已经拥有的代码
List<string> foo = new List<string>();
List<string> newFoo = new List<string>();
for (int h = 0; h < l; h++);
{
// Here I want to search through every element of foo and if the element
// length is greater than say 5 i want to add it to the newFoo
}
我不知道如何搜索每个元素以及我能找到的任何示例都使用我不想做的 LINQ,因为我确信有一种更简单的方法。非常感谢任何帮助。