Suppose we have a simple class
public class Foo { public string FooName; }
Now we want to do simple work on it.
public void SomeCallerMethod(List<Foo> listOfFoos) { string[] fooNames = listOfFoo.
If I even knew which method to call, I could probably find the rest of the peices.
c # linq-to-objects
Joel barsotti
source share