Skip to content

Commit 1702e58

Browse files
authored
Update README.md
1 parent a4108dc commit 1702e58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ Sometimes you might want to exclude certain fields & properties from cloning:
3333
```csharp
3434
private class TestPropsWithIgnored
3535
{
36-
public int A { get; set; } = 10;
3736
[FastClonerIgnore] // <-- decorate such members with [FastClonerIgnore]
3837
public string B { get; set; } = "My string";
38+
39+
public int A { get; set; } = 10;
3940
}
4041

4142
TestPropsWithIgnored original = new TestPropsWithIgnored { A = 42, B = "Test value" };

0 commit comments

Comments
 (0)