What version of Boo? Extension methods are supported since 0.9.0. If you cannot use extension methods with the version you are using, you will have to use absolute method calls, for example. Enumerable.Select (...).
As @Jean said, did you also import System.Linq?
source
share