Refactoring

Programming Tips: 4 Steps to Better Code

Submitted by jproimakis on
Here are four tips that will help your code automatically get better. a. Use Small Methods: This tends to be the most difficult part in coding, but it’s arguably the most important as well. Keeping your methods small, helps maintain tidier code, with more descriptive method names and fewer side effects. Your code will be easier to run through and that will help you maintain a wider view of your

Part IV: Improving of Code using Modules in Visual Basic.Net

Submitted by joken on
This tutorial is a continuation of Part III: Update and Delete Specific Data in MySQL Database using Visual Basic. Net. But this time we're going to focus on how we can improve the design of our existing code using Code Refactoring. Refactoring is the process of changing a software system in such a way that it hasn't altered the external behavior of the code, yet improves its internal structure.