T
tonicvodka
What is the naming convention for functions in c#?
Thanks for your responses!
What I'm actually looking for is some support for writing get/set
functions camel case?
e.g. getCustomer() but I won't find that, will I? Anywhere?
Thank you that's the decisive response I wanted.
Still it's not totally clear for me.
e.g. If I create a button and I call it btnSave, then the method this
button will trigger would be: btnSave_Click(...)
Is that correct? Or am I using an incorrect convention naming the
button?
Thank's for the suggestion, but no, I prefer using methods.
The thing is, I'm quite sure we used camel case for get/set methods on
a VC++ project I worked in a couple of years ago. I just came to
wanting to find out if that was some official naming convention or just
specific for that project.
I'm trying to get the naming guidelines straight here, and I guess this
means that VS.NET by default doesn't follow the naming guidelines?