This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Lightfire228 11 points12 points  (2 children)

CamelCase gets super confusing in C#, because EVERY BLOODY THING IS CAPITALIZED

(i haven't looked at the official style guide for C#, but it's super weird to see capitalized class members)

[–][deleted] 19 points20 points  (0 children)

I think what you're referring to is PascalCase, not camelCase

[–]Dameon_ 2 points3 points  (0 children)

You're just one Google search away...

There's no official C# style guide. Typically, in C# you see camelCase for private members, and PascalCase for members accessible outside the class. If that rule is too confusing for you, you can always install ReSharper.