About 127,000 results
Open links in new tab
  1. documentation - Methodology for documenting existing code …

    Nov 5, 2018 · Higher level documentation Finally there is what to do about system level and architectural documentation. Many would advocate writing such documentation in a wiki or …

  2. Are comments considered a form of documentation?

    Everything is documentation, code is documentation, Comments usualy have no [additional] information, or are wrong. Document the intention the what (code contracts can help with this), …

  3. Self-documenting Code vs Commented Code - Software …

    Back in the uni I wrote cryptic pieces of code simply due to using strange and funny names for all code entities, according to my whim. Until my teacher threw back one of my assignments, …

  4. Why and how to write clear code comments and when will …

    Sep 5, 2023 · Documentation should be on a higher level, explaining the things that are less obvious from the code itself, such as why a particular solution is preferred over another …

  5. documentation - Design Document From Code - Software …

    Then, documentation's purpose is to introduce the code to the new developer who doesn't know anything about the architecture of the existent codebase. It means that documentation is not …

  6. code sample - What are better ways of indicating "insert actual …

    Nov 7, 2023 · In your code, you may even throw an exception with an explanatory message when it is called with this sentinel value passed. 1: not to be confused with their usage in API …

  7. Clean Code comments vs class documentation

    Jun 4, 2015 · Documentation is more important than code, and documentation in code is called comments A good way to write programs is to start with deciding which modules (methods, …

  8. Is there any logical reason to auto-generate code documentation?

    Do you do this, and are there any rational reasons not to simply leave code undocumented if you aren't going to actually write the documentation yourself? No. The documentation generated …

  9. How to do documentation for code and why is software (often) …

    In-code documentation (code comments) is not needed according to some developers when the code is self-documenting. For them, the presence of comments is, except in the rare cases, …

  10. Where to put code documentation? - Software Engineering Stack …

    I am currently using two systems to write code documentation (am using C++): Documentation about methods and class members are added next to the code, using the Doxygen format. On …