DeepCloner icon indicating copy to clipboard operation
DeepCloner copied to clipboard

Fast object cloner for .NET

Results 19 DeepCloner issues
Sort by recently updated
recently updated
newest added

Is there a provision in the library to make shallow copy of few expensive objects, while we deep copy the remaining object graph. I doubt on reviewing the APIs, I...

DeepCloner is currently targeted at Netstandard 1.3, which, along with this version of netstandard, downloads the system.text.regularexpressions and system.net.http packages that have vulnerabilities. Is it possible to target DeepCloner at...

Clone Action delegate is incorrect, DeepClone appears to Clone the Action.Target object, which it shouldn't be, because the delegate itself should just be a pointer to the target method.

bug

Here is a piece of code to recreate the bug, I hope. using System.Collections.Generic; using System.Linq; using Force.DeepCloner; namespace DeepClonerBug { internal class Program { static void Main(string[] args) {...

Hi there, first of all, thanks for the great library :) We have our own implementation of deep cloning and wanted to test out this library to compare performance, but...

netcoreapp was [replaced](https://learn.microsoft.com/en-us/dotnet/standard/frameworks#supported-target-frameworks) with net since v5.

I've run into a problem where using DeepClone to clone a TaskCancelledException is corrupting memory and leading to a crash of my application. The exception is being thrown by Task.Delay(int,...

I saw previous discussions about weird, unpredictable behaviors regarding Dictionaries and HashSets cloned using DeepCloner. I looked into how DeepCloner processed the cloning of such objects and I saw that...

The referenced NuGet package NETStandard.Library 1.6.1 references 2 NuGet packages that have known security risks. - System.Net.Http 4.3.0 - System.Text.RegularExpressions 4.3.0 This could be solved for example by update NETStandard.Library...