I have in instance of class foo and i want to return it as IEnumerable. Can i do it without creating a new list etc..
Perhaps something like the following:
you could do this:
public IEnumerable GetSingleFooAsEnumerable() { yield return singleFoo; }