We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4108dc commit 1702e58Copy full SHA for 1702e58
README.md
@@ -33,9 +33,10 @@ Sometimes you might want to exclude certain fields & properties from cloning:
33
```csharp
34
private class TestPropsWithIgnored
35
{
36
- public int A { get; set; } = 10;
37
[FastClonerIgnore] // <-- decorate such members with [FastClonerIgnore]
38
public string B { get; set; } = "My string";
+
39
+ public int A { get; set; } = 10;
40
}
41
42
TestPropsWithIgnored original = new TestPropsWithIgnored { A = 42, B = "Test value" };
0 commit comments