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.
…
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 …
3
votes
Background Intelligent Transfer Service In C#
Yes, we're using it in a tool to let customers upload logs, dumps, etc. to our customer support department. You could use it directly via PInvoke/COMInterop, but I suggest to have a look at …
