from el in world.ExtensionMethodsLibraries group el by el.Method into g select g;
Posted by: Frans Boumas blog,
on 22 Oct 2008 |
View original | Bookmarked: 0 time(s)
Everyone who's doing .NET 3.5 development these days will likely run into the same problem I ran into this morning: your set of extension methods grows beyond the level of a single file and you need to group them into separate sets of files or worse: you discover you have several distinct projects which all have extension methods and it's better to group them into a single library.
So I started VS.NET 2008 and began with a new solution and a new class library project. Right at the spot when I...