We use identifiers to name our variables, classes and methods. C# identifiers are case sensitive.
Usually the parameters, local variables are in camel case, for example, myValue
.
The other identifiers are Pascal case, such as MyValue
.
C# identifiers start with underscore or letter. The follow are good valid C# identifiers:
_width, RectangleArea
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |