6
votes
Static Class Vs. Class with private constructor and all static properties and methods?
In addition to the previous answers: The compiler won't allow non-static members on static classes and produces and error. This may help a little bit to not accidently add non-static members.
…
0
votes
How to build only a handful of projects contained in a solution using MSBuild?
You could create an additional solution configuration in your solution, e.g. called "Build". In that configuration only build the projects you want. In the teambuild project file use the element t …
4
votes
What’s Your Favorite C# Open Source Project of the year 2008?
Windows Installer XML Toolset
Makes creating Windows Installer packages easy and similar to writing code. Uses a compile/link approac …
