When working with static fields that are private or internal, use the s_ prefix and for thread static use t_.
на мсдн? покажи пример, интересно же
Use camel casing ("camelCasing") when naming private or internal fields, and prefix them with _.
так себе аргумент, тогда бы у всех полей ставились прочерки)
не понял, а зачем его писать? а без _ что ли нужно писать?
на мсдн? покажи пример, интересно же
In addition to the rules, there are many identifier naming conventions used throughout the .NET APIs. By convention, C# programs use PascalCase for type names, namespaces, and all public members. In addition, the following conventions are common:
- Interface names start with a capital I.
- Attribute types end with the word Attribute.
- Enum types use a singular noun for non-flags, and a plural noun for flags.
- Identifiers shouldn't contain two consecutive _ characters. Those names are reserved for compiler-generated identifiers.