active questions tagged coding-standards - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:45:40Z http://stackoverflow.com/feeds/tag/coding-standards http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/758279/checking-in-of-commented-out-code 43 Checking in of "commented out" code John 2009-04-16T22:24:07Z 2009-12-21T08:06:07Z <p>Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have drawn up a first draft of some coding guidelines.</p> <p>I have proposed that "commented out" code should never be checked into the repository. The reason I have stated this is that the repository maintains a full history of the files. If you are removing the functional code then remove it altogether. The repository keeps your changes so it is easy to see what was changed.</p> <p>This has caused some friction in that another developer believes that taking this route is too restrictive. This developer would like to be able to comment out some code that he is working on but is incomplete. This code then would never have been checked in before and then not saved anywhere. We are going to be using TFS so I suggested that shelving the changes would be the most correct solution. It was not accepted however because he would like to be able to checkin partial changes that may or may not be deployed.</p> <p>We want to eventually get to a point where we are taking full advantage of Continuous Integration and automatically deploying to a development web server. Currently there is no development version of web servers or database servers but that will all be changed soon.</p> <p>Anyway, what are your thoughts? Do you believe that "commented out" code is useful to have in the repository?</p> <p>I'm very interested to hear from others on this topic.</p> <p>Edit: For clarity sake, we don't use private branches. If we did then I'd say do what you want with your private branch but don't ever merge commented out code with the trunk or any shared branches.</p> <p>Edit: There is no valid reason we don't use private or per user branches. It's not a concept I disagree with. We just haven't set it up that way yet. Perhaps that is the eventual middle ground. For now we use TFS shelving.</p> http://stackoverflow.com/questions/956255/why-is-it-bad-practice-to-call-an-eventhandler-from-code 18 Why is it bad practice to call an eventhandler from code? jjb 2009-06-05T14:43:20Z 2009-12-18T04:00:34Z <p>Say you have a menu item and a button that do the same task. Why is it bad practice to put the code for the task into one control's action event and then make a call to that event from the other control? Delphi allows this as does vb6 but realbasic doesn't and says you should put the code into a method that is then called by both the menu and the button</p> http://stackoverflow.com/questions/1103299/help-me-understand-this-brian-kernighan-quote 4 Help me understand this Brian Kernighan quote LittleBoy 2009-07-09T11:30:59Z 2009-12-17T18:08:35Z <p>"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." --Brian Kernighan</p> <p>It seems to be a subjective question, but in your opinion, </p> <p>'What exactly is he intending "clever" to be?'</p> http://stackoverflow.com/questions/1916576/mandatory-use-of-braces 13 Mandatory use of braces Dean J 2009-12-16T18:14:12Z 2009-12-16T21:20:04Z <p>As part of a code standards document I wrote awhile back, I enforce "you must always use braces for loops and/or conditional code blocks, even (especially) if they're only one line." </p> <p>Example:</p> <pre><code>// this is wrong if (foo) //bar else //baz while (stuff) //things // This is right. if (foo) { // bar } else { // baz } while (things) { // stuff } </code></pre> <p>When you don't brace a single-line, and then someone comments it out, you're in trouble. If you don't brace a single-line, and the indentation doesn't display the same on someone else's machine... you're in trouble.</p> <p>So, question: are there good reasons why this would be a mistaken or otherwise unreasonable standard? There's been some discussion on it, but no one can offer me a better counterargument than "it feels ugly".</p> http://stackoverflow.com/questions/1905258/r-code-examples-best-practices 0 R code examples/best practices Bob Albright 2009-12-15T04:58:52Z 2009-12-15T16:19:54Z <p>I'm new to R and having a hard time piecing together information from various sources online related to what is considered a "good" practice with writing R code. I've read basic guides but I've been having a hard time finding information that is definitely up to date.</p> <ol> <li>What are some examples of well written/documented S3 classes?</li> <li>How about corresponding S4 classes?</li> <li>What conventions do you use when commenting .R classes/functions? Do you put all of your comments in both .Rd files and .R files? Is synchronization of these files tiresome?</li> </ol> http://stackoverflow.com/questions/1899683/is-there-a-standard-in-java-to-use-underscore-in-front-of-variable-or-class-n 1 Is there a standard in java to use _ [underscore] in front of variable or class name Kalinga 2009-12-14T08:36:13Z 2009-12-14T13:06:05Z <p>I have seen some of our colleagues using _ [underscore] in front of class names [entities in JPA], and few more people using it for local variables.</p> <p>Is there a standard[or atleast best practice] in java to use _ [underscore] in front of instance[private] instance variable or class name????</p> <p>I have looked at the following link in SO [Stack Overflow]. I could not get my question answered. <a href="http://stackoverflow.com/questions/150192/using-underscores-in-java-variables-and-method-names">Using underscores in Java variables and method names</a></p> http://stackoverflow.com/questions/1862593/constant-abuse 15 Constant abuse? Bryan Rowe 2009-12-07T20:15:35Z 2009-12-13T16:32:24Z <p>I have run across a bunch of code in a few C# projects that have the following constants: </p> <pre><code> const int ZERO_RECORDS = 0; const int FIRST_ROW = 0; const int DEFAULT_INDEX = 0; const int STRINGS_ARE_EQUAL = 0; </code></pre> <p>Has anyone ever seen anything like this? Is there any way to rationalize using constants to represent language constructs? IE: C#'s first index in an array is at position 0. I would think that if a developer needs to depend on a constant to tell them that the language is 0 based, there is a bigger issue at hand.</p> <p>The most common usage of these constants is in handling Data Tables or within 'for' loops.</p> <p>Am I out of place thinking these are a code smell? I feel that these aren't a whole lot better than:</p> <pre><code>const int ZERO = 0; const string A = "A"; </code></pre> http://stackoverflow.com/questions/1840220/examples-of-spartan-programming-in-c 3 Examples of Spartan Programming in C# MagicAndi 2009-12-03T14:31:26Z 2009-12-12T00:59:10Z <p>I am interested in reading examples of code in C# that makes use of the <a href="http://ssdl-wiki.cs.technion.ac.il/wiki/index.php/Spartan%5Fprogramming" rel="nofollow">Spartan Programming</a> philosophy. Can you please provide a link to any open source project or online code sample that follows this coding style? </p> http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free 10 Setting variable to NULL after free ... Alphaneo 2009-06-22T05:35:16Z 2009-12-10T08:11:12Z <p>In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ...</p> <pre><code>void some_func () { int *nPtr; nPtr = malloc (100); free (nPtr); nPtr = NULL; return; } </code></pre> <p>I feel that, in cases like the code shown above, setting to NULL does not have any meaning. Or am I missing something?</p> <p>If there is no meaning in such cases, I am going to take it up with the "quality team" to remove this coding rule. Please advice.</p> http://stackoverflow.com/questions/1868303/developers-checking-in-non-conforming-code 1 Developers checking in non-conforming code pcampbell 2009-12-08T16:54:21Z 2009-12-08T17:03:36Z <p>Consider a situation where a group of developers work independently(more or less) on projects. The dept. has a published standard to ensure code quality on issues like:</p> <ul> <li>no inline/embedded/dynamic SQL statements (hand coded by the developer)</li> <li>naming conventions</li> <li>more</li> </ul> <p><strong>Question</strong></p> <p>How would you set about enforcing the code quality rules? Are there any code quality analyzers that might catch inline SQL statements? Are there any build-time or check-in tools that can help? (please note: mostly Microsoft environment).</p> <p>This may be a case for code reviews. Any suggestions on how to review a project's architecture and implementation before publish to Production (or even Staging!). I realize code reviews is a whole set of questions in itself, but any higher level thoughts are appreciated!</p> http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard 22 Most crucial elements in a light-weight C++ coding standard R.A 2008-10-28T10:03:22Z 2009-12-06T03:04:50Z <p>I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to uphold it.</p> <p>Now I'm working in, and leading, an environment even less probable to have processes and follow-up strategies in quite a while. Still I want to uphold some minimum level of respectable code. So I thought I would get good suggestions here, and we might together produce a reasonable light-weight subset of the most important coding standard practices for others to use as reference.</p> <p>So, to emphasize the essence here:</p> <h2> <strong>What elements of a C++ coding standard are the most crucial to uphold?</strong></h2> <ul> <li><h2>Answering/voting rules</h2> <ul> <li><p>1 candidate per answer, preferably with a <strong>brief</strong> motivation.</p></li> <li><p><strong>Vote down</strong> candidates which focuses on style and subjective formatting guidelines. This is not to indicate them as unimportant, only that they are less relevant in this context. </p></li> <li><p><strong>Vote down</strong> candidates focusing on how to comment/document code. This is a larger subject which might even deserve its own post.</p></li> <li><p><strong>Vote up</strong> candidates that clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.</p></li> <li><p><strong>Don't cast your vote</strong> in any direction on candidates you are uncertain about. Even if they sound reasonable and smart, or on the contrary "something surely nobody would use", your vote should be based on clear understanding and experience.</p></li> </ul></li> </ul> http://stackoverflow.com/questions/1848283/assigning-null-to-objects-in-every-application-after-their-use 4 Assigning "null" to objects in every application after their use ZiG 2009-12-04T16:57:05Z 2009-12-04T21:36:53Z <ul> <li><p>Do you always assign <code>null</code> to an object after its scope has been reached?</p></li> <li><p>Or do you rely on the JVM for garbage collection? </p></li> <li><p>Do you do it for all sort of applications regardless of their length?</p></li> <li><p>If so, is it always a good practice?</p></li> </ul> http://stackoverflow.com/questions/1845275/when-should-i-use-a-prefix-on-objective-c-classes 2 When should I use a prefix on Objective C classes? Don Mowry 2009-12-04T06:49:22Z 2009-12-04T12:26:12Z <p>According to <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/CodingGuidelines/Articles/NamingBasics.html" rel="nofollow">Apple</a>, two to three letter prefixes should be used</p> <blockquote> <p>when naming classes, protocols, functions, constants, and typedef structures.</p> </blockquote> <p>Does this include classes which are not intended to be part of a framework, simply used internally in an application? I realize this is relying on other developers that develop frameworks you might be using to use prefixes, but that seems acceptable. What about Core Data entities? If I generate classes from them, shouldn't they be prefixed as well?</p> http://stackoverflow.com/questions/1682003/what-to-do-about-procedural-code-business-logic-and-queries-in-php 0 what to do about Procedural code, business logic and queries in PHP Thx1138.6 2009-11-05T16:56:13Z 2009-12-03T20:51:44Z <p>I have been tasked with supporting and maintaining several PHP/MySQL web apps (I use the term 'app' lossely) that seem to defy every known coding standard. </p> <p>The PHP code contains routines, procedures, business logic, and even queries - it's all in the code. There is no object-orientated programming, not even MVC, and certainly no separation of the presentation layer from the application layer. No framework was used to build these apps either and I am using the Yii Framework for new projects.</p> <p>Although it's time consuming should I rewrite these applications? At least half my week involves fixing them, doing updates are having to work with these existing apps in my new work.</p> <p>Anyone have any advice on this? </p> http://stackoverflow.com/questions/643666/stylecop-for-other-languages 4 StyleCop for other languages James Hollingworth 2009-03-13T16:58:13Z 2009-12-03T11:50:59Z <p>Hi, weve been using StyleCop for enforcing coding standards in C#, I was wondering are there similar tools for other languages? namely:</p> <ul> <li>js</li> <li>css</li> <li>sql</li> </ul> http://stackoverflow.com/questions/967537/good-example-of-written-rails-coding-standards 4 Good example of written Rails coding standards? Kevin Dewalt 2009-06-08T23:31:06Z 2009-11-27T07:55:56Z <p>I'm in the process of developing written code standards for a Rails app and am looking for some good examples of coding standards developed by others. Something that expands a bit on the ideas discussed in...</p> <p>Does anyone have a good reference to share?</p> <p><a href="http://www.scribd.com/doc/2889649/Rails-coding-standards-defined" rel="nofollow" title="Rails coding standards doc on Scribd">http://www.scribd.com/doc/2889649/Rails-coding-standards-defined</a></p> <p>Examples:</p> <blockquote> <ol> <li>STYLE: Line up hash arrows for readability</li> <li>STYLE: put spaces around => hash arrows</li> <li>STYLE: put spaces after ',' in method params - but none between method names and '('</li> </ol> </blockquote> <p>(Note that I'm new to StackOverflow and not sure if this counts as a "question"...please advise if not...)</p> http://stackoverflow.com/questions/1794619/using-switch-to-compare-multiple-values-in-an-array-in-php 1 Using switch to compare multiple values in an array in PHP Zimzat 2009-11-25T04:26:25Z 2009-11-25T04:33:00Z <p>I recently found a situation in which I had two related variables that had several permutations upon which I wanted to do an action if the two variables were one of half a dozen permutations.</p> <p>As an example of what the data range the variables were:</p> <pre><code>$months = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'); $days = array('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'); $month = $months[array_rand($months)]; $day = $days[array_rand($days)]; $week = rand(1, 4); </code></pre> <p>What I came up with involved a simple switch comparison of an array, like this:</p> <pre><code>function checkInputForCriteria($month, $day, $week) { switch (array($month, $day)) { case array('January', 'Wednesday'): case array('February', 'Monday'): case array('April', 'Tuesday'): case array('July', 'Saturday'): case array('September', 'Thursday'): case array('September', 'Tuesday'): return (in_array($week, array(1, 2))); } return FALSE; } </code></pre> <p>Commonly this would be written as:</p> <pre><code>function checkInputForCriteria($month, $day, $week) { if ( ($month == 'January' &amp;&amp; $day == 'Wednesday') || ($month == 'February' &amp;&amp; $day == 'Monday') || ($month == 'April' &amp;&amp; $day == 'Tuesday') || ($month == 'July' &amp;&amp; $day == 'Saturday') || ($month == 'September' &amp;&amp; $day == 'Thursday') || ($month == 'September' &amp;&amp; $day == 'Tuesday') ) { return ($week == 1 || $week == 2); } return FALSE; } </code></pre> <p>While I realize the switch-case-array method isn't commonly used, I don't see any coding standard reason not to use it. PHP has no problem comparing the data in each element of the array exactly as it looks. It is compact with direct order relation between the value array elements and each comparison array element. The only reason I can see not to use this method is if it were CPU or memory intensive (which I haven't tested).</p> <p>Based on just the coding standard implications, would you accept this usage in your own code? If you saw this in someone elses code just browsing past it would you have any trouble understanding what was happening?</p> <p>If this type of structure is disallowed simply because it's not what we normally see/expect, what would be the way to introduce a structure to compare data like necessary in the above examples? Are basic <code>if</code> statements the only acceptable way to compare data to make logic decisions?</p> http://stackoverflow.com/questions/1780384/should-if-statement-always-have-an-else-clause 6 Should 'if' statement always have an 'else' clause? Jack 2009-11-22T23:21:45Z 2009-11-24T20:05:34Z <p>This may be a religious argument, but it has been debated ad-nauseum here at my work whether all IF statements should include an ELSE clause - even if the ELSE clause only contains a comment stating that it was 'intentionally left blank'.</p> <p>I have heard arguments for both sides: The 'For' camp - ensures that the codes has actually addressed whether the condition requires an ELSE clause The 'Against' camp - code is harder to read, adds too much noise</p> <p>I am interested in any other points of view as I have to resolve this debate with an answer that would satisfy both parties.</p> <p>Thank you for your help.</p> <p>BTW: I did search StackOverflow for an answer to this and was unable to find one. If there is one, just include a link to it and close. Thanks.</p> http://stackoverflow.com/questions/1647926/oracle-coding-standards-feature-implementation 2 Oracle Coding Standards Feature Implementation Mike Hofer 2009-10-30T03:50:23Z 2009-11-24T19:13:13Z <p>Okay, I have reached a sort of an impasse.</p> <p>In my open source project, a .NET-based Oracle database browser, I've implemented a bunch of refactoring tools. So far, so good. The one feature I was really hoping to implement was a big "Global Reformat" that would make the code (scripts, functions, procedures, packages, views, etc.) standards compliant. (I've always been saddened by the lack of decent SQL refactoring tools, and wanted to do something about it.)</p> <p>Unfortunatey, I am discovering, much to my chagrin, that there doesn't seem to be any one widely-used or even "generally accepted" standard for PL-SQL. That kind of puts a crimp on my implementation plans.</p> <p>My search has been fairly exhaustive. I've found lots of conflicting documents, threads and articles and the opinions are fairly diverse. (Comma placement, of all things, seems to generate quite a bit of debate.)</p> <p>So I'm faced with a couple of options:</p> <ul> <li>Add a feature that lets the user customize the standard and then reformat the code according to that standard.</li> </ul> <p>—OR—</p> <ul> <li>Add a feature that lets the user customize the standard and simply generate a violations list like StyleCop does, leaving the SQL untouched.</li> </ul> <p>In my mind, the first option saves the end-users a lot of work, but runs the risk of modifying SQL in potentially unwanted ways. The second option runs the risk of generating lots of warnings and doing no work whatsoever. (It'd just be generally annoying.)</p> <p>In either scenario, I still have no standard to go by. What I'd need to know from you guys is kind of poll-ish, but kind of not. If you were going to use a tool of this nature, what parts of your SQL code would you want it to warn you about or fix?</p> <p>Again, I'm just at a loss due to a lack of a cohesive standard. And given that there isn't anything out there that's officially published by Oracle, I think this is something the community could weigh in on. Also, given the way that voting works on SO, the votes would help to establish the popularity of a given "refactoring." </p> <p>P.S. The engine parses SQL into an expression tree so it can robustly analyze the SQL and reformat it. There should be quite a bit that we can do to correct the format of the SQL. But I am thinking that for the first release of the thing, <em>layout</em> is the primary concern. Though it is worth noting that the thing already has refactorings for converting keywords to upper case, and identifiers to lower case.</p> http://stackoverflow.com/questions/1338335/standards-for-web-programming 2 Standards for Web Programming The Sheek Geek 2009-08-27T00:47:15Z 2009-11-23T21:36:34Z <p>This is strictly an opinion/experience question for research purposes. </p> <p>I was wondering what coding standards companies have in place now for Web Developers? (Document formats, coding standards, file structures, etc.)</p> <p>Obviously they all can't be listed, but some major ones would give me an idea.</p> http://stackoverflow.com/questions/1780815/how-do-you-like-your-naming-conventions -1 How do you like your naming conventions? acidzombie24 2009-11-23T02:26:45Z 2009-11-23T03:08:19Z <p>I looked at <a href="http://msdn.microsoft.com/en-us/library/xzf533w0%28VS.71%29.aspx" rel="nofollow">MSDN .NET Naming Guidelines</a> about 2 years ago and i remember not liking certain things. Now that i used .NET more i cant remember what they were nor have complaints now.</p> <p>I know ruby people have a different naming conventions and some people like_underscores while others hate it. I see the C++ standard library and boost use underscores while many C++ programmers use camelcase.</p> <p>Does anyone have an argument on when to use underscores and when not too? One said in php all global functions should_have_underscores while methodsShouldUseCamel.</p> <p>What do you enjoy or dislike in the naming conventions you have used? and why?</p> http://stackoverflow.com/questions/1772510/coding-standard 0 Coding Standard [closed] BALA 2009-11-20T18:48:01Z 2009-11-21T18:45:49Z <p>What do you gurus consider to be a very good coding standard in terms of PHP programming? Please advise!</p> http://stackoverflow.com/questions/1762724/stylecop-for-resharper 3 StyleCop for ReSharper AJM 2009-11-19T11:42:05Z 2009-11-19T12:04:51Z <p>I like stylecop and we use it to enforce coding standards.</p> <p>I dont like the fact that there is no way to automatically fix problems. So was thinking of making a plugin. Once I realised that 2010 is better for doing this I backtracked.</p> <p>I've been looking for an existing tool to help automate this process and have come across stylecop for resharper. <a href="http://stylecopforresharper.codeplex.com/" rel="nofollow">http://stylecopforresharper.codeplex.com/</a></p> <p>Has anyone got any positive/negative experiences of using this plugin</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them 250 What are Code Smells? What is the best way to correct them? Rob Cooper 2008-09-22T11:34:19Z 2009-11-19T04:15:56Z <p>OK, so I know <em>what</em> a code smell <em>is</em>, and the <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">Wikipedia Article</a> is pretty clear in its definition:</p> <blockquote> <p>In computer programming, code smell is any symptom in the source code of a computer program that indicates something may be wrong. It generally indicates that the code should be refactored or the overall design should be reexamined. The term appears to have been coined by Kent Beck on WardsWiki. Usage of the term increased after it was featured in Refactoring. Improving the Design of Existing Code.</p> </blockquote> <p>I know it also provides a list of common code smells. But I thought it would be great if we could get clear list of not only <strong>what code smells there are</strong>, but also <strong>how to correct them.</strong></p> <h2>Some Rules</h2> <p>Now, this is going to be a little subjective in that there are differences to languages, programming style etc. So lets lay down some ground rules: <hr /></p> <h2>** ONE SMELL PER ANSWER PLEASE! &amp; ADVISE ON HOW TO CORRECT! **</h2> <ul> <li>See <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them#114386">this answer</a> for a good display of what this thread should be!</li> </ul> <h3>DO NOT downmod if a smell doesn't apply to your language or development methodology</h3> <p>We are all different.</p> <h3>DO NOT just quickly smash in as many as you can think of</h3> <p>Think about the smells you want to list and get a <strong>good</strong> idea down on how to work around.</p> <h3>DO downmod answers that just look rushed</h3> <p>For example "<em>dupe code - remove dupe code</em>". Let's makes it <strong>useful</strong> (e.g. Duplicate Code - Refactor into separate methods or even classes, use these links for help on these common.. etc. etc.).</p> <h3>DO upmod answers that you would add yourself</h3> <p>If you wish to expand, then answer with your thoughts linking to the original answer (if it's detailed) or comment if its a minor point.</p> <h3>DO format your answers!</h3> <p>Help others to be able to read it, use code snippets, headings and markup to make key points stand out!</p> http://stackoverflow.com/questions/1757586/php-specific-clean-code-naming-conventions-and-documentation 0 PHP specific - clean code, naming conventions and documentation Phill Pafford 2009-11-18T17:13:55Z 2009-11-19T00:09:50Z <p>What are some of the best practices for clean code, naming conventions and documentation for PHP?</p> <p>I see users/people saying this is a bad practice, Example:</p> <pre><code>// Create an array to hold x values $arr_x = array(); </code></pre> <p>That this is a unnecessary comment cause the syntax alone explains the functionality. That is should be more of a header comment that describes the script/function functionality rather than the variables/flow of the program. Example</p> <pre><code>/** * Create an array */ function create_array() { return array(); } $arr_x = create_array(); // This is just to show the comments and the code is not tested or used except for this example </code></pre> <p>This has lead me down the path of proper syntax, coding and documentation (The reason for the title naming).</p> <p>what is acceptable for variable, functions and script naming conventions or is this personal preference? </p> <pre><code>$varX function varX() varX.php </code></pre> <p>or </p> <pre><code>$var_x function var_x() var_x.php </code></pre> <p>I'm trying to find if there is a standard I should be conforming to. Thanks</p> http://stackoverflow.com/questions/1757240/how-to-document-the-main-method 0 How to document the Main method? Mike Hofer 2009-11-18T16:27:13Z 2009-11-18T16:33:00Z <p>Okay, so I've got a .NET console application with it's Main method, contained in a Program class. You know, the usual:</p> <pre><code>class Program { static void Main(string[] args) { // Do something spectactular } } </code></pre> <p>Since I've started using StyleCop and FxCop so rigorously, I've become kind of nit-picky about making sure everything is properly documented. </p> <p>Then it hit me. I have <em>absolutely</em> no idea how to properly document Program and Program.Main.</p> <p>I suppose, in the long run, that you could go with the following:</p> <pre><code>/// &lt;summary&gt; /// Encapsulates the application's main entry point. /// &lt;/summary&gt; class Program { /// &lt;summary&gt; /// The application's main entry point. /// &lt;/summary&gt; static void Main(string[] args) { // Do something spectactular } } </code></pre> <p>But that seems woefully inadequate (despite the fact that my Main routines always delegate to other classes to do the work).</p> <p>How do you folks document these things? Is there a recommendation or standard? </p> http://stackoverflow.com/questions/1434083/how-to-use-transactions-in-dotnetnuke-entangled-with-l2s 1 How to use transactions in DotNetNuke (entangled with L2S)? Eran Betzalel 2009-09-16T16:30:54Z 2009-11-18T05:30:25Z <p>I use L2S at my module. The problem occurs while I'm using the default DNN entities at the same TransactionScope with my L2S data access, then I get a DTC request which I want to avoid. </p> <p>How can I share the connection/transaction for both DNN entities and my L2S data access?</p> http://stackoverflow.com/questions/1751662/what-standards-do-you-use 1 What standards do you use? [closed] Matt Joslin 2009-11-17T20:48:23Z 2009-11-18T02:31:57Z <p>This question recently came up in work, posed by directors and filtered down the chain</p> <p><strong>"What standards do you use on a daily basis?"</strong> (This was actually posed to all engineers not just software guys)</p> <p>Part of this came about due to UI issues regarding the use of colour as the primary means of data display on a industrial plc mimics and web screens (intranet), rather than being used for emphasis. (It is good practice to develop screens like this in monochrome then move on to colour.)</p> <p>*see: <a href="http://www.usabilitynet.org/tools/r%5Finternational.htm#14598" rel="nofollow">ISO 9241: Ergonomic requirements for office work with visual display terminals</a></p> <p>Many other "standards" exist such as coding standards, testing standards etc. Some tie in with disability and discrimiation laws. Departments might have there own in-house standards for source control, naming conventions and so on...</p> <p>But I must admit, during my daily grind of writing code, specs and dealing with day to day firefighting, I never seem to give much thought to standards and how Im adhering to them. (I guess some of them become habit and you don't notice)</p> <p>What standards do you use?</p> <p>Do other people feel that there are too many standards to keep up with? </p> <p>How do you deal with standards? </p> http://stackoverflow.com/questions/1745316/c-coding-style-braces 1 C# coding style: braces [closed] nw 2009-11-16T22:39:39Z 2009-11-16T22:43:02Z <p>Most C# style guides recommend putting the open brace of a block on a new line:</p> <pre><code>MyBlock { ... } </code></pre> <p>Why is this preferable to keeping the open brace on the same line as the block name, as below?</p> <pre><code>MyBlock { ... } </code></pre> http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow 73 What was the strangest coding standard rule that you were forced to follow? Brian R. Bondy 2008-10-20T11:38:15Z 2009-11-11T23:40:41Z <p>When I asked <a href="http://stackoverflow.com/questions/167575/should-a-project-manager-enforce-coding-standards">this question</a> I got almost always a definite yes you should have coding standards. </p> <p>What was the strangest coding standard rule that you were ever forced to follow?</p> <p>And by strangest I mean funniest, or worst, or just plain odd. </p> <p>In each answer, please mention which language, which team size, and which ill effects it caused you and your team.</p>