Generic Free Pattern Improved C#
Hi, some time ago I posted information about Generic Free Pattern, but I used there the reflection. Today I would like to share with you a much faster solution. The source of creation is a bridge between non-generic and generic classes in the Creator method. The usage of the pattern is at the end of the code. Where you can create a class EntityManager that is non-generic, but the logic that is called behind the scenes redirects the execution to the generic version of this class named EntityManager. The nice thing about this pattern is that it automatically figured out Continue ReadingGeneric Free Pattern Improved C#
