Well iv decided to try to create a Resharper plugin, based on some of the rules and guidelines of the Framework Design Guidelines book, mainly for the variable names, for now. Basically, I want to try to create a plugin that will throw up a warning if your variable names dont follow a certain convention - for public methods, the variable names should be PascalCased, whereas if you have a private method, the variable names should be camelCased...
That, and I just want to learn how to create Resharper plugins