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.
Well, it just uses the class’ name. So for a string it would suggest
myStringas variable name.The question is rather: Why are you naming classes with a
Classsuffix?