Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 585 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 585 Bytes

Write your own AutoMapper in C#

Sometimes you have to map an object to another representation in C#. And you think: Why isn't C# duck-typing capable?

You might hear of libraries like AutoMapper that do the tedious work of mapping one object to another with the same structure. This blog post will give a super simple introduction to how those libraries are working internally.

In the end a bit of a subjective topic on whether or not I would use such libraries.

Found here