Search code examples
c#naming-conventionsmemberinternal

C# - Naming conventions for internal members


What are the naming conventions for internal members in C#?

For example, default access modifier for WPF controls is internal - how should I name them?


Solution

  • All non-public members should be lowerCamelCase.