vote up 2 vote down star
2

What are the most common naming conventions in C# for classes, namespaces and methods? Is it common to have getter/setter style methods as in Java?

flag

5  
Anything But Hungarian. – Matthew Jones Aug 4 at 16:18

8 Answers

vote up 1 vote down check

There are a few common patterns out there. One I frequently see and use in my own projects is:

namespace Company.Concept.SubConcept
{
    public class MyClass
    {
        private MyType someData;

        public MyType SomeData
        { 
            get { return someData; }
            set { someData = value; }
        }

        public void MyMethod()
        {
        }
    }
}
link|flag
Personally I'm not a fan of the m_ conventions. The goal of that notation is to tell you the scope of the variable. However, I find that it gets in the way of readability of the code more than it helps understand where the variable is declared. If you are in doubt of where the variable is defined, just mouse over it in Visual Studio. I feel this standard is going the same route that Hungarian notation went (remember all the variable prefixes to remind you of the variable's type? n, l, sz, dw, lpsz, etc?) – Eric J. Aug 4 at 16:33
vote up 0 vote down

MSDN provides Design Guidelines that spell this out in detail.

link|flag
vote up 2 vote down

I think that most projects are using the IDesign CSharp Coding Standard

link|flag
vote up 8 vote down

Guidelines for Names (from Design Guidelines for Developing Class Libraries, in which you will also find sections about properties and choosing between properties and methods. In that last article, you will find the following:

Do use a property, rather than a method, if the value of the property is stored in the process memory and the property would just provide access to the value.

link|flag
Thanks for the edit @ShuggyCoUk; missed that. – Fredrik Mörk Aug 4 at 21:04
vote up 0 vote down

Check out Lance's page

http://weblogs.asp.net/lhunt/pages/CSharp-Coding-Standards-document.aspx

and

Naming guidelines

link|flag
vote up 0 vote down

A quick google search gives an msdn article.

link|flag
vote up 5 vote down

No it is not common to use getter /setter style names in C#. Properties should be used for almost all places you would use a getter / setter in Java.

IMHO, the defacto standard for naming conventions comes from the Framework Design Guidelines. It's enforced by several tools (FxCop) and is the dominant style of many libraries including the BCL.

link|flag
2  
Take note that C# 3.0 + provides support for auto-implementing properties. And don't ignore private set. – Brian Aug 4 at 16:23
While correct this doesn't really give the whole picture. I know that you know this, but I'd like to see the answer reference that properties, in essence, are syntactic sugar for accessors and are preferred over explicit accessors. When using a Property you really are defining accessor methods. As of C# 3.0, the language provides automatic properties that will create backing fields and the appropriate methods to get/set them via the automatic property syntax. Coming from a Java background it took me awhile to catch on to properties until I understood what they really were. – tvanfosson Aug 4 at 16:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.