why does list have foreach method code example
Example: c# list.foreach
List<string> someList = <some way to init>
someList.ForEach(delegate(string s) {
<process the string>
});
List<string> someList = <some way to init>
someList.ForEach(delegate(string s) {
<process the string>
});