DeepCloner
DeepCloner copied to clipboard
Fast object cloner for .NET
This library has a significant amount of downloads and appears to be stable and reliable. Why does it still have major version 0? This makes the library look rather unprofessional...
```cs var clonedHashSet = new HashSet{new object()}.DeepClone(); var clonedObject = clonedHashSet.First(); clonedHashSet.Contains(clonedObject); // false clonedHashSet.Clear(); clonedHashSet.Add(clonedObject); clonedHashSet.Contains(clonedObject); // true ```
the program crashed when i deepclone opencvsahrp Mat for several times
System.StackOverflowException:“Exception_WasThrown” on internal static Func GetClonerForValueType().
Hello, I have quite a few classes that implement INotifyPropertyChanged due to mvvm, cloning these classes seems to lead to a memory error and crash problem. Is there a way...
Hi. I got this message by cloning standard DTO object, that inherits from INotifyPropertyChanged interface via Fody. I'm not sure could that be a problem. Thanks
```cs abstract class Common { public int P { get; set; } } class ChildA : Common { public int Q { get; set; } } class ChildB : Common...
This class will allow users not to write wrappers to make their code more testable and flexible.
I discovered several issues using your library. **Situation 1:** I have a parent form with datagridview. Mouse doubleclick on datagridview row retrieves binded record and open new child form that...