Search Results

1
vote

What books do you suggest for understanding object oriented programming design deeply?

Two books by Robert Martin are a great starting point: Clean Code Agile Principles, Patterns, and Practices I'd also recommend Designing Object- …
0
votes

Which declaration is better?

A few additional points: If you plan on unit testing the code that uses the WinSock class you should consider making the class public instead of internal and consider making the metho …
0
votes

When is OOP better suited for?

Object oriented code and procedural code have different extensibility points. Object oriented solutions make it easier to add new classes without modifying existing functions (see the Open-Closed …