Tagged Questions

5
votes
2answers
423 views

Understanding the Open Closed Principle

I was refactoring some old code of a simple script file parser when I came across the following code: StringReader reader = new StringReader(scriptTextToProcess); StringBuilder scope = new ...