Some time ago I read following rules:
- local variables, parameters are written with Camel case
- field, properties, methods with Pascal
However then I have seen that in using properties, the property should be Pascal and that private field camel. So I am confused, what is the correct, standard naming convention?
What MSDN says
Since this has been mentioned: A recommendation for underscores as prefix for private fields does not seem to be included in the conventions on MSDN, but the .NET classes are written in that style.