We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29514d2 commit 400f970Copy full SHA for 400f970
1 file changed
documentation/SA1642.md
@@ -96,6 +96,23 @@ private Customer()
96
}
97
```
98
99
+The `<para>` tag can be used within the `<summary>` tag to structure the text.
100
+For example:
101
+
102
+```csharp
103
+/// <summary>
104
+/// <para>
105
+/// Initializes a new instance of the <see cref="Customer"/> class.
106
+/// </para>
107
108
+/// Additional information can be included in subsequent paragraphs.
109
110
+/// </summary>
111
+public Customer()
112
+{
113
+}
114
+```
115
116
## How to fix violations
117
118
To fix a violation of this rule, edit the summary text for the constructor as described above.
0 commit comments