From ac54e9b1d576dbfbe7bc16b9079c8a845ddb4aa0 Mon Sep 17 00:00:00 2001 From: Sebastien Marichal Date: Thu, 1 May 2025 15:50:57 +0200 Subject: [PATCH] Modify S1699: Fix bullet list issue --- rules/S1699/csharp/rule.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/rules/S1699/csharp/rule.adoc b/rules/S1699/csharp/rule.adoc index 89036b10f3d..5954224f4aa 100644 --- a/rules/S1699/csharp/rule.adoc +++ b/rules/S1699/csharp/rule.adoc @@ -46,6 +46,7 @@ public class Child : Parent == How to fix it Depending on the context, you can either: + * avoid calling overridable methods from constructors. This is the recommended approach * ensure that the method is not overridden in any derived classes. This can be done by marking the method as `sealed` in the current class * ensure that the class is not inherited from. This can be done by marking the class as `sealed`