list t c# foreach code example
Example 1: c# list foreach
someList.ForEach(x => { if(x.RemoveMe) someList.Remove(x); });
Example 2: c# list.foreach
List<string> someList = <some way to init>
someList.ForEach(delegate(string s) {
<process the string>
});