Skip to content

Commit 242331e

Browse files
authored
Update README.md
1 parent 51fa01d commit 242331e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ public static T? DeepClone<T>(this T? obj)
3838

3939
_The following examples assume you've copied the extension method above._
4040

41-
Sometimes, you might want to exclude certain fields & properties from cloning:
41+
Sometimes, you might want to exclude certain fields (including event synthesized) and properties from cloning:
4242
```csharp
4343
private class TestPropsWithIgnored
4444
{
45-
[FastClonerIgnore] // <-- decorate such members with [FastClonerIgnore]
45+
[FastClonerIgnore] // <-- decorate with [FastClonerIgnore]
4646
public string B { get; set; } = "My string";
4747

4848
public int A { get; set; } = 10;

0 commit comments

Comments
 (0)