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`