Created Issue: Add a Initialization Interface For Virtual Method Usage [9360]
See my blog post for details on this idea: http://www.jasonbock.net/JB/Default.aspx?blog=entry.e19c6d5f9bd5448296b16a7b16817b3c
View ArticleCreated Feature: Create an AutoLock Property for Methods [9638]
This is a wild, probably silly, idea, but it would be fun (more than anything) to pull of.Basically, the idea is simple:[Lock]public void SomeMethod() { }So if someone calls it, it would automatically...
View ArticleCreated Feature: Create a CodeAnalysis SuppressMessage Attribute Remover [10213]
Simple: get rid of all these attributes in an assembly. They're only needed for CA; they don't need to stick around once the static analysis is complete.
View ArticleCreated Feature: Create a MaximumCall Attribute [10214]
This would be for methods, like this:[MaximumCall(1)]public void SomeMethod() { }Code would be added to ensure the method was called only once.This would be interesting as this could enforce a...
View ArticleCreated Feature: Auto-Implement Dispose Checker [11317]
If you implement IDisposable, you should throw ObjectDisposedException whenever any member on your object is used after Dispose() is called. Doing something like this:[CheckForDispose]public class...
View Article