c# list.foreach code example
Example 1: c# list foreach
someList.ForEach(x => { if(x.RemoveMe) someList.Remove(x); });
Example 2: c# list.foreach
List someList =
someList.ForEach(delegate(string s) {
});
someList.ForEach(x => { if(x.RemoveMe) someList.Remove(x); });
List someList =
someList.ForEach(delegate(string s) {
});