csharp list.foreach

Code Example - csharp list.foreach

                
                        List<string> someList = <some way to init>
someList.ForEach(delegate(string s) {
    <process the string>
});