vote up 0 vote down star

Hi guys,

I was wondering why R# offers a variable name with a "class" suffix? When I am creating an instance of a class, why would I put a class suffix of my instance? Can there be any reason to have a such thing:

BusinessClass myBusinessClass = new BusinessClass();

Thanks.

flag

69% accept rate

2 Answers

vote up 7 vote down check

Well, it just uses the class' name. So for a string it would suggest myString as variable name.

The question is rather: Why are you naming classes with a Class suffix?

link|flag
1  
Well, for collections and deelgates it is recommended to add "Delegate" or "Collection" at the end. Then I thought why not to do that for Classes actually. But you are right. R# is not doing something odd it seems. Thank you! – pencilcake Oct 24 at 9:15
vote up 0 vote down

well if you name your class Business you woudn't have that suffix :)

Business myBusiness = new Business();

and why are you suffixing your class with Class ??

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.