Hello!
I have this class:
class DoSomething
{
private int timesDone;
...
}
Which is the right way to named variable 'timesDone'?
Sometimes I see named as m_timesDone. Is this correct? Where I can find information about naming guidelines?
Thank you!

timesDonefor private fields andTimesDonefor the exposing property. When I'm setting the field in a constructor, I call the parametertimesDoneand refer to the field asthis.timesDone. I find_timesDonefor the field,timesDonefor the parameter andTimesDonefor the property an acceptable combination as well. But this is all just my opinion. You should form your own. :) – Joren Sep 27 at 7:24