B
bronco
Guest
Personally I'm in favour of: - directory names lowercase (also namespaces) - .p, .w, .i filenames in lowercase - classes UpperCamel (and therefor also the .cls files) - outward facing members (public/protected) UpperCamel - private and local lowerCamel - buffers are prefixed with b- (make it easier to determine scope imho) - no prefixes (with exeption for Interfaces) However, I work with TypeScript more and more and that is more lowerCamel for members (but filename strictly in lowercase). I do realize we're on the brink of a holy war with this 
Continue reading...
Continue reading...