Object wiring ties objects together so they can communicate with each other. Learn the details while applying the concept in .NET. While designing software applications, you’ll encounter situations in ...
When building applications, you often come across objects that are quite expensive to create. In some scenarios, the cost of creating new objects is high enough to impact application performance. Here ...
Practical .NET Move Beyond Factory Methods with the Builder Pattern in C#/Visual Basic When your objects get sufficiently complicated to create, it's time to simplify your life by moving to the ...
Take advantage of the null object pattern in .NET to eliminate the need for null checks and avoid runtime errors in your applications. You might often encounter null reference exceptions in your ...
Peter starts off with a perfectly good solution to a problem but then complicates the problem . . . and ends up moving to a different design pattern. While on that journey he has some best practices ...
It's not good enough to simply write code that works. That code must be easily maintained, enhanced and debugged when problems happen. One of the reasons why object-oriented programming is so popular ...