Should I really care if I am using i++
, ++i
or i += 1
in a loop?
Short answer is that there i
[More]
What is the effect of using async
and await
on a method that simply calls another async
method.
[More]
Supporting Collections
I have added support for nested collections to my Equals
implementation
[More]
Let us look at the lifetime of injected dependencies in Blazor.
[More]
Let's have a look at DebuggerDisplay
, a super nice debugging feature which is not known enough...
[More]

Let's look at implementing a Value Object's GetHashCode
.
[More]
In the first part, I showed you how you can implement the Equals
method for Value Objects efficientl
In this blog post, I want to show you how this class is implemented.
In this blog post, I want to show you how this is implemented.
[More]

This blog discusses how to implement a Value Object's Equals
method efficiently.
[More]

Domain Driven Design uses a series of patterns for building applications that are more maintainable,
and allow a complex application to stand the test of time. One of these patterns is Repository,
and a lot of people spend time building their own repositories.
[More]

Azure now allows you to get a free certificate for your website running as an app service.
[More]