About 16,200,000 results
Open links in new tab
  1. What is refactoring and what is only modifying code?

    Martin Fowler's "Refactoring: Improving the Design of Existing Code" is perhaps THE reference: Refactoring is a controlled technique for improving the design of an existing code base. Its …

  2. refactoring - "refactor refactor refactor your code." What does this ...

    Refactoring code is a process of cleaning up your code, reducing the clutter and improving the readability without causing any side effects or changes to features. Basically, you refactor by …

  3. Tool to refactor C# var to explicit type - Stack Overflow

    foreach (KeyValue<DateTime, Dictionary<string, float>> dateEntry in allValue) (and easier than remembering what the explicit type is in some cases). Do any of the refactoring tools have the …

  4. Response, Result, Reply, which is best? - Stack Overflow

    Apr 8, 2010 · I'm refactoring some client-server code and it uses the terms Response, Result &amp; Reply for the same thing (an answer from the server). And although its not really that …

  5. java - Replace Temp with Query - Stack Overflow

    The Replace Temp with Query refactoring method is recommended quite widely now but seems to be very inefficient for very little gain. The method from the Martin Fowler's site gives the …

  6. refactoring - What's the best way to refactor a method that has …

    Jan 20, 2011 · If the set of parameters can't be made into a meaningful object, that's probably a sign that Shniz is doing too much, and the refactoring should involve breaking the method …

  7. What is refactoring? - Stack Overflow

    Refactoring is modifying existing code to improve its readability, re-usability, performance, extensibility and maintainability. Have you ever looked at code and thought, "Wow this is a …

  8. Code generation "Quick Actions" in Visual Studio 2022 ... - Stack …

    Jan 23, 2023 · Typically when I implement an interface or write code for which usings are missing it is possible to press Ctrl+. (or right click and press 'Quick Actions and Refactorings...') to get …

  9. refactoring - How much duplicated code do you tolerate? - Stack …

    Refactoring this kind of system either requires methods taking more generic objects than needed, followed by typechecking and casting, or else the class hierarchy needs to be rethought & …

  10. refactoring - When should I break a function? - Stack Overflow

    He suggested refactoring to separate concerns and I must say I have to agree. That is, one function should do one thing, if it does more than one thing, split it up. If not, let it be together, …