Code inspection: Possible cyclic constructor callLast modified: 11 February 2024Category: Potential Code Quality IssuesID: ConstructorInitializerLoopEditorConfig: resharper_constructor_initializer_loop_highlighting=[error|warning|suggestion|hint|none]Default severity: WarningLanguage: 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.