Code inspection: Possible cyclic constructor callLast modified: 11 February 2024 Category: Potential Code Quality Issues ID: ConstructorInitializerLoop EditorConfig: resharper_constructor_initializer_loop_highlighting=[error|warning|suggestion|hint|none] Default severity: Warning Language: C# Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.Given the following (rather synthetic) code snippetclass Base { Base(int n) : this("") { } Base (string s) : this(0) { } }calling any of the constructors will cause an eventual stack overflow as constructors call each other perpetually.