show/hide this revision's text 3 deleted 285 characters in body; edited tags

What programming or naming conventions have you come across that really rub you the wrong way?

I'm working with a team who are really pedantic about coding style, and will run around saying things like "braces must go on a new line", "you shouldn't use the ternary if/else". Anyway, the most infuriating thing I've come across are the conventions around structuring the class.

For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows you to collapse these blocks in Visual Studio for readability.

So the convention on this team is to wrap all combinations of access modifier in their own region. Every time I open a file I'm presented with something like:

+ #region private constants
+ #region private members
+ #region private statics
+ #region public properties
+ #region static constructor
+ #region private constructor
+ #region public properties
+ #region protected overridden methods
+ #region internal methods
+ #region private methods

Well that's great, but where's the method that maps the message response onto our object? Is it an internal method, or a public one? Why does the private members region only have one member, turning one line of code into three? Why add a region to describe something that is self descriptive?

Maybe I'm just having a bad day...

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Annoying or idiotic naming conventions?

What programming or naming conventions have you come across that really rub you the wrong way?

I'm working with a team who are really pedantic about coding style, and will run around saying things like "braces must go on a new line", "you shouldn't use the ternary if/else". Anyway, the most infuriating thing I've come across are the conventions around structuring the class.

For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows you to collapse these blocks in Visual Studio for readability.

So the convention on this team is to wrap all combinations of access modifier in their own region. Every time I open a file I'm presented with something like:

+ #region private constants
+ #region private members
+ #region private statics
+ #region public properties
+ #region static constructor
+ #region private constructor
+ #region public properties
+ #region protected overridden methods
+ #region internal methods
+ #region private methods

Well that's great, but where's the method that maps the message response onto our object? Is it an internal method, or a public one? Why does the private members region only have one member, turning one line of code into three? Why add a region to describe something that is self descriptive?

Maybe I'm just having a bad day...

    Post Made Community Wiki by Community