What are the most common naming conventions in C#?

后端 未结 6 520
我寻月下人不归
我寻月下人不归 2021-01-06 22:52

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?

6条回答
  •  囚心锁ツ
    2021-01-06 23:53

    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.

提交回复
热议问题