subroutines

About this tag
Subroutines are reusable blocks of code that help streamline programming by reducing redundancy. In a WindowsForum.com discussion, a self-taught developer shares how consolidating common subroutines into a class shortened their C++ and C# code by 50%. The user, who learned programming outside formal training, discovered that multiple methods performed identical tasks, highlighting the value of subroutines for code optimization. This tag covers topics like code refactoring, class design, and eliminating duplicate logic in Windows development environments.
  1. G

    Windows 8 You real developers are lucky

    So, I decided to spend today dedicated to just optimizing my apps. Like shortening them, etc. So, I went through my older apps and oh my goodness thousands of lines of codes that were unnecessary. I managed to put all the common subroutines into a class and voila I shortened the codes by...
Back
Top