You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DeepConvert should be able to convert data between the following types:
Dictionary<string, object> – class { … } (with same dictionary keys and properties/fields)
class { … } – class { … } (with same property/field names)
Property/field names should be matched case-insensitively, unless that would be ambiguous. If a property/field is itself of a composite type, the conversion recurses into that property/field.
Only public properties/fields are regarded, but the type itself should not necessarily be public.
Reflection data about the involved types should be cached for better performance. This might be a with compiled expressions or Reflection.Emit.
The text was updated successfully, but these errors were encountered:
DeepConvert should be able to convert data between the following types:
Property/field names should be matched case-insensitively, unless that would be ambiguous. If a property/field is itself of a composite type, the conversion recurses into that property/field.
Only public properties/fields are regarded, but the type itself should not necessarily be public.
Reflection data about the involved types should be cached for better performance. This might be a with compiled expressions or Reflection.Emit.
The text was updated successfully, but these errors were encountered: