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?
|
2
|
|||||
|
|
|
There are a few common patterns out there. One I frequently see and use in my own projects is:
|
|||
|
|
|
MSDN provides Design Guidelines that spell this out in detail. |
||
|
|
|
|
I think that most projects are using the IDesign CSharp Coding Standard |
||
|
|
|
|
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:
|
|||
|
|
|
|
||
|
|
|
|
A quick google search gives an msdn article. |
||
|
|
|
|
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. |
||||||
|
