buunguyen / fasterflect

.NET Reflection Made Fast and Simple ⛺
https://www.nuget.org/packages/fasterflect/
Apache License 2.0
283 stars 55 forks source link

faterflect with .NET6 : Dictionary not working with .NET6 for faterflect Deepclone #22

Open I-m-Vineet opened 2 years ago

I-m-Vineet commented 2 years ago

fasterflect with .NET : Dictionary not working with .NET6 for Deepclone

Whenever you try to deepclone disctionary object , It thows error "Constructor does not exist'"

e.g. : var dictionary = new Dictionary<string, string>(); dictionary.Add("abc", "xya"); var deepDictionary = dictionary.DeepClone();

image