
C#
5 posts
Design-Patterns
members
Factory Pattern
4 min read
This post is a continuation of the design pattern posts I've been working through recently, which can be found in GitHub. Additionally, I would also recommend reading the Head First…
C#
members
Composite Pattern
2 min read
The composite pattern is a structural design pattern that's used when you want to compose objects into tree structures to represent part-whole hierarchies. Basically, the composite pattern is useful when…
C#
members
Structs and Lists
1 min read
I had a bit of an interesting time with some very basic code today. I was iterating over a collection and updating properties of items in the collection. But when…
C#
members
Rounding in .NET
1 min read
I was working through a Pluralsight course a few days ago, and came across a little snippet discussing how Math.Round actually performs it’s rounding calculation. As I was…