Search Results

2
votes

Prevent Legacy Function Calls In VB.NET

Hookup FxCop to your build and have it flag those usages. You can write your own rules to enforce your coding standards in an automated fashion. …
5
votes

What are the benefits of maintaining a “clean” list of using directives in C#?

Less noise. Clear expectation of what types are used ("My UI layer depends upon System.Net. Wow, why?") Cleaner references: if you have the minimal set of using statements, …
1
vote

Code Coverage on Visual Studio Team System 2008 Developer Edition (on an NUnit application)

Here's a tutorial on integrating NCover with MSBuild. …