Naming guidelines with C#.

Posted by VansFannel on Stack Overflow See other posts from Stack Overflow or by VansFannel
Published on 2009-09-27T07:12:34Z Indexed on 2010/05/09 6:48 UTC
Read the original article Hit count: 183

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!

© Stack Overflow or respective owner

Related posts about naming-conventions

Related posts about c#