No it really doesn't :) As long as everyone uses a consistent coding standard I'm happy.
We follow the MSDN published style guidelines at work, so fields should not be prefixed with an underscore, which is fine because everyone will do the same thing. We also use 4 spaces rather than tabs, we actually have a commit hook to keep tabs out, mainly so you don't get someone reformatting a whole file in their IDE which makes merging more difficult. On Mon, May 4, 2009 at 7:15 PM, Fabian Schmied <[email protected]>wrote: > > > I always thought it was an interesting style and wondered the origins of > it. > > Also wondered how it would be easier to read, since it separates the > method > > name from its arguments. However, I'm not starting a coding style war :) > > Well, as always - a matter of taste. I think the separation of method > name from method arguments is exactly the point, it makes for a little > less cluttering. When I joined rubicon (my employer), they already had > this coding style, and I've gotten used to it. > > assemblyBuilder.DefineDynamicModule ("MyModule", "MyModule.dll", true) > > vs. > > assemblyBuilder.DefineDynamicModule("MyModule", "MyModule.dll", true) > > Does it really matter? :) > > Fabian > > > > -- Jono --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Castle Project Development List" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/castle-project-devel?hl=en -~----------~----~----~----~------~----~------~--~---
