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 ...
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 ...
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 ...
You'll need, for example, to start using the pattern Microsoft calls Model-View-Presenter (MVP). MVP is the default pattern used in Windows Forms, ASP.NET Web Forms and WPF applications (though, of ...
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 ...