code style for private methods in c#
Posted
by illdev
on Stack Overflow
See other posts from Stack Overflow
or by illdev
Published on 2010-05-03T14:22:33Z
Indexed on
2010/05/03
14:28 UTC
Read the original article
Hit count: 293
I just found out, that it seems a common pattern to user UpperFirstLetterPascalCase() for private methods. I for myself, find this completely inconsistent with naming rules of private instance fields and variables and I find it difficult to read/debug, too.
I would want to ask, why using a first upper letter for methods could be a better choice than a first lower (doThis())? Just out of curiosity...
© Stack Overflow or respective owner