Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 6th, 2007, 04:49 PM
Authorized User
 
Join Date: Nov 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Default Which coding convention do you use?

Hi to all!

I would like to ask you which coding convention do you use?

Regards,





 
Old January 9th, 2007, 10:46 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

There are a lot of areas of coding convention. Which are you interested in?

Class, Method(, Argument), (Local/Global)Variable naming conventions?
Bracketing styles?

I use the following naming conventions:

Variables: 3 character camelCased pseudo-hungarian notation (globals prefixed with underscore)
Code:
   intPageCount, strUsername, bolSuccess, _aryObservers
Classes: PascalCased
Code:
   class User
   class FluxCapacitor

Interfaces: PascalCased with prefixed I
Code:
   IModelObserver, IController
Methods: PascalCased
Code:
   SaveUser(), CalculateFluxCapacitance()
Method arguments: non camelCased descriptive names
Code:
   SaveUser(User user), CalculateFluxCapacitance(DateTime destinationDate)
I personally use this bracketing convention for code layout:
Code:
   class FluxCapacitor{
      int CalculateFluxCapacitance(DateTime destinationDate){
         if(...){
            ....
         } else {
            ....
         }
      }
   }
However, my employer favors the brackets on separate lines:
Code:
   class FluxCapacitor
   {
      int CalculateFluxCapacitance(DateTime destinationDate)
      {
         if(...)
         {
            ....
         }
         else
         {
            ....
         }
      }
   }
-Peter
 
Old January 9th, 2007, 10:59 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

We use the Microsoft ones at http://msdn.microsoft.com/library/de...guidelines.asp.
Not perfect but at least it saved us from writing our own document and no-one could agree on stuff anyway. This way saved a lot of arguments.
The worse thing is Microsoft's own examples are often in contradiction to it...

--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
SQL Server Naming convention for Replication darrenb SQL Server 2005 3 May 3rd, 2008 02:50 PM
Table path using 4 part naming convention snufse SQL Server 2000 1 February 1st, 2008 07:45 PM
host has preset database naming convention crmpicco PHP Databases 0 October 23rd, 2007 01:14 PM
database connection convention g2000 Classic ASP Basics 3 July 29th, 2005 08:50 PM
coding mdlan PHP Databases 1 May 28th, 2005 07:40 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.