Click here to Skip to main content
15,895,606 members

Survey Results

Do you have formal coding guidelines in your company?   [Edit]

Survey period: 29 Aug 2005 to 4 Sep 2005

Do you have guidelines explaining coding standards such as naming conventions, error handling and inline documentation requirements, or is it every man for themselves?

OptionVotes% 
Yes, and they must be adhered to22822.18
Yes, but they are fairly casual29228.40
No, we just try to be consistent with one another31730.84
No19118.58



 
GeneralRe: What code casing style do you follow? Pin
Dale Thompson29-Aug-05 3:05
Dale Thompson29-Aug-05 3:05 
GeneralRe: What code casing style do you follow? Pin
Bob Stanneveld29-Aug-05 4:00
Bob Stanneveld29-Aug-05 4:00 
GeneralRe: What code casing style do you follow? Pin
jhwurmbach29-Aug-05 2:28
jhwurmbach29-Aug-05 2:28 
GeneralRe: What code casing style do you follow? Pin
Bob Stanneveld29-Aug-05 4:02
Bob Stanneveld29-Aug-05 4:02 
GeneralRe: What code casing style do you follow? Pin
tommazzo29-Aug-05 5:18
tommazzo29-Aug-05 5:18 
GeneralRe: What code casing style do you follow? Pin
Joshua Quick29-Aug-05 6:41
Joshua Quick29-Aug-05 6:41 
GeneralRe: What code casing style do you follow? Pin
jonathan1530-Aug-05 4:50
jonathan1530-Aug-05 4:50 
GeneralRe: What code casing style do you follow? Pin
Detlef D. Doerscheln31-Aug-05 1:02
Detlef D. Doerscheln31-Aug-05 1:02 
I use m_camelCasing for Members, l_camelCasing for local Variables and p_camelCasing for Parameters.

Properties and Methods are in PascalCasing.

Because of the lack of guidelines I made this my own guidline hoping that it will keep me sane ( no need to comment that Wink | ;) )
I just like to be able to write something like this:
<br />
public void DoSomething(int p_theValueToWorkWith)<br />
{<br />
   ...<br />
   ...<br />
   int l_theValueToWorkWith=p_theValueToWorkWith;<br />
   ...<br />
   ...<br />
}<br />


Beside that, using CodeRush I can still type faster than I can think.
GeneralRe: What code casing style do you follow? Pin
Synaptrik31-Aug-05 8:32
Synaptrik31-Aug-05 8:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.