MSDN - spaces after the colon. That's different than Objective-C, where I don't see people using a space after the colon. I'm thinking it might be an issue where syntax highlighting hasn't caught up to the feature yet, but I have no experience in a good IDE. MonoDevelop, which I use on the Mac with Unity, neither provides syntax coloring nor autocomplete for named parameters. There is a lot there; if you know what I'm asking to exist within, or elsewhere, please let me know. I haven't found it yet.
|
feedback
|
|
Microsoft has some common sense guidelines published on MSDN, in my opinion its the uniformity that counts as much as the convention. If you are not already doing so its worth looking at Stylecop for code styling and standards. From: Names of Parameters
| |||
|
feedback
|
|
Nobody forces you to use some specific style, if this is what you're asking about. You can write it without the spaces, or with the space after the colon, or with the space before the colon, or with the spaces surrounding the colon, as you wish. However, IMHO, it is more readable when you only use a single space after the colon. | |||||||||
feedback
|
|
I usually go with what Microsoft suggests explicitly, or follow their examples if there is no explicit recommendation: their examples are rather consistent, so formatting my code the same way as they do feels right to me. The most important thing is to decide on a common style in your organization, and follow it strictly for a consistent look of your code. | |||||
feedback
|
|
Style guides should emerge from the development team. Each language has its own idioms that should be followed but the details need to be defined by the team. The same applies to naming conventions. Write them down, circulate and get everybody's agreement. If you're doing open source I'm sure the community will give you feedback. | |||||||
feedback
|