I've been arguing with my coworkers about this since they are used to camel casing for everything from table names in SQL databases to property naming in C# code but I like pascal casing better, camel casing for variables and pascal casing for properties:
string firstName;
public string FirstName {
...
}
But they are used to this:
string _firstname;
public string firstName {
...
}
I try to keep up with their "standard" so code looks the same but I just dont like it.
I've seen that at least the .Net framework uses this convention and that is how I try to keep my code eg:
System.Console.WriteLine("string")
What do you use/prefer and why? Im sorry if somebody else asked this question but I searched and did not find anything.
Update: I've given a method example and not a property but it's the same, as a stated on the first paragraph my colleagues use the pascal convention for everything (variables, methods, table names, etc.)
