We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3365be0 commit 2d83f78Copy full SHA for 2d83f78
README.md
@@ -63,13 +63,12 @@ public class MyClass
63
public string StrVal { get; set; }
64
}
65
66
-// Only classes where FastDeepClone() extension method should be generated
67
-// need to use [FastClonerClonable]!
+// [FastClonerClonable] is only required on types where you call .FastDeepClone()
68
var original = new GenericClass<List<MyClass>> { Value = new List<MyClass> { new MyClass { StrVal = "hello world" } } };
69
var clone = original.FastDeepClone();
70
```
71
72
-## Advanced usage
+## Advanced Usage
73
74
Sometimes, you might want to exclude certain fields/events/properties from cloning:
75
```csharp
0 commit comments