Code inspection: Sealed member in sealed classLast modified: 11 February 2024Category: Redundancies in Symbol DeclarationsID: SealedMemberInSealedClassEditorConfig: resharper_sealed_member_in_sealed_class_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.Consider the following snippet:class Base { protected virtual void Change(int id) { } } sealed class Derived : Base { protected override sealed void Change(int id) { } }Marking the Derived.Change() method as sealed is redundant because the whole class it happens to be in is marked as sealed.