We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51fa01d commit 242331eCopy full SHA for 242331e
README.md
@@ -38,11 +38,11 @@ public static T? DeepClone<T>(this T? obj)
38
39
_The following examples assume you've copied the extension method above._
40
41
-Sometimes, you might want to exclude certain fields & properties from cloning:
+Sometimes, you might want to exclude certain fields (including event synthesized) and properties from cloning:
42
```csharp
43
private class TestPropsWithIgnored
44
{
45
- [FastClonerIgnore] // <-- decorate such members with [FastClonerIgnore]
+ [FastClonerIgnore] // <-- decorate with [FastClonerIgnore]
46
public string B { get; set; } = "My string";
47
48
public int A { get; set; } = 10;
0 commit comments