How do I execute a foreach lambda expression on ObservableCollection<T>?

旧城冷巷雨未停 提交于 2020-01-01 09:10:03

问题


How do I execute a foreach lambda expression on ObservableCollection<T>?

There is not method of foreach with ObservableCollection<T> although this method exists with List<T>.

Is there any extension method available?


回答1:


There is no method available by default in the BCL but it's straight forward to write an extension method which has the same behavior (argument checking omitted for brevity)

public static void ForEach<T>(this IEnumerable<T> enumerable, Action<T> action) {
  foreach ( var cur in enumerable ) {
    action(cur);
  }
}

Use case

ObservableCollection<Student> col = ...;
col.ForEach(x => Console.WriteLine(x.Name));



回答2:


public static class EnumerableExtensions
{
    public static void ForEach<T>(this IEnumerable<T> enumerable, Action<T> action)
    {
        foreach (var e in enumerable)
        {
            action(e);
        }
    }
}



回答3:


observableCollection.ToList().ForEach( item => /* do something */);


来源:https://stackoverflow.com/questions/2519416/how-do-i-execute-a-foreach-lambda-expression-on-observablecollectiont

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