Jeffery Felce

Results 15 comments of Jeffery Felce

In the CopierGenerator class there is this: ``` private static readonly ConcurrentDictionary Copiers = new ConcurrentDictionary(); ... private static readonly Func GenerateCopier = CreateCopier; ... public static T Copy(T original,...

For the ListOfStruct_* tests above ... The SimpleStruct is considered Immutable.. that is, it is a value type itself and all of its field members are also immutables. Since that...

Understood ... I am currently looking at the performance differences and trying to understand them. As I move along, I am just making my observations. Here is another instance where...

I finished my appraisal of DeepCopy and integrated my findings with my source. As suggested, I wrote up my observations for Reuben as an Issue for him. Part of the...

You can set private members using Expressions but you need to use the FieldInfo or PropertyInfo fetched from the class via reflection. Particularly, these overloads: public static MemberExpression Field(Expression expression,...