Codelines

Debugging the art of software

Entries Tagged ‘Programming’

Decoupling Operations from the Data it Operates On…

Firstly you might ask why you would want to do this, and it is a valid question. After all, in the OO paradigm we usually bind data and its operations together. Thus creating fully functional objects. It is often good that an object knows what it can do with its own data and how it [...]

Leave a Comment

Generics in .NET

I was a big fan of generics when they were first introduced in Java 5.0 and I have to say, .NET is no exception. In fact, I enjoy programming more in .NET these days than I do in Java. But that’s another story.When you can really abstract something well, the addition of generics can further [...]

Leave a Comment