Explore >> Select a destination


You are here

fsharpforfunandprofit.com
| | blog.ploeh.dk
13.4 parsecs away

Travel
| | In functional programming, the notion of dependencies must be rejected. Instead, applications should be composed from pure and impure functions.
| | blog.nuculabs.de
16.4 parsecs away

Travel
| | The Constructor Injection design pattern is a pattern that helps you declare all the required dependencies of a class in it's constructor. This is useful because it helps you decouple the code, you can specify an interface instead of a concrete type, remember, program to an interface. Also, in the constructor it is easier to guard against null objects. The calling code doesn't have to worry about null exceptions every time it uses a dependency.
| | conradakunga.com
15.6 parsecs away

Travel
| | This is Part 6 of a series on dependency injection.
| | blog.kdgregory.com
128.3 parsecs away

Travel
| Chasing a bug can be one of the most frustrating parts of software development. All you have to start with is an observed behavior. Hopeful...