João wrote: > I'm talking about some kind of coding conventions. In a team > environment it's a good practice to make everyone follow the same > coding conventions. Different programmers give more or less the same > names to classes/methods/properties, etc since all of them follow the > same rules. Unfortunately we do not have rules for naming Item > Renderer classes so I'm researching if there are any coding > conventions for this files - else, we need to create our own conventions.
I'm not aware of any official convention, but I've always found descriptive names to be the most helpful. If you are creating am item renderer for a users list, something like UsersListItemRenderer in the proper namespace will work. I like to use this in general so a given class is as descriptive as possible: UserRegisterEvent, UserRegisterCommand, etc. -Ricky

