Skip to content

Commit 6e7d652

Browse files
committed
add links to Dispose pattern topic
1 parent d95e2a9 commit 6e7d652

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/code-quality/ca1063-implement-idisposable-correctly.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Every unsealed type that declares and implements the <xref:System.IDisposable> i
5252

5353
## Rule description
5454

55-
All <xref:System.IDisposable> types should implement the Dispose pattern correctly.
55+
All <xref:System.IDisposable> types should implement the [Dispose pattern](/dotnet/standard/design-guidelines/dispose-pattern) correctly.
5656

5757
## How to fix violations
5858

@@ -126,4 +126,8 @@ public class Resource : IDisposable
126126
}
127127
}
128128
}
129-
```
129+
```
130+
131+
## See also
132+
133+
- [Dispose pattern (framework design guidelines)](/dotnet/standard/design-guidelines/dispose-pattern)

0 commit comments

Comments
 (0)