I just want to know everyone's approach on enhancing an existing application. I was tasked a couple of times with this and most of the time, I re-coded the applications if they were not large enough. These applications were written in a language that supports (and practices) OOP yet they are coded procedurally (I still wonder they were not able to learn OOP -- okay these are C# desktop apps). If you have experienced this, what are your approaches? What were you thinking? Thanks.
closed as off topic by Jerry Coffin, Ray Toal, Corbin, StilesCrisis, Alexei Levenkov Apr 19 '12 at 5:59
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You must have been dealing with some pretty trivial apps if you could just throw them away and redo them. That's my first thought. My entire professional career has been working on codebases developed by others first... that's just part of the business. Sometimes the original authors are around, sometimes not. If working on a foreign codebase isn't a skill you currently possess, I recommend you practice it. |
|||
|
|
|
i just make my own class design suitable for OOP. After i create my class designs which suits OOP pricipals, i start fill my functions of my classes regarding the existing code. |
|||
|
|