PreviousNext

Value Object Design Pattern in C#

by bill-s, 2015-11-07T10:00:33.000Z

In this blog, we will understand how to implement Value object design pattern in C#. Value object is an object whose equality is based on the value rather than identity. Let us understand the above statement with more clarity. When you create two objects and even if their values are the same, they represent different entities.

Read More