c# class naming standards/guidelines

Posted by Ben on Programmers See other posts from Programmers or by Ben
Published on 2011-07-05T19:19:59Z Indexed on 2012/08/29 21:51 UTC
Read the original article Hit count: 358

Filed under:
|

Over the years I've used various naming conventions for services in my applications

for example:

[ClassName]Service  
[ClassName]Manager  
[ClassName]Factory  
[ClassName]Provider  
[ClassName]Helper

I generally only use the "Helper" suffix for utility classes that have no external dependencies.

However I find that there is a bit of a cross-over between the others, and wondered if there was any recommendations/standards/guidelines on what to use and when?

© Programmers or respective owner

Related posts about c#

Related posts about naming