Code inspection: Event is never subscribed to (private accessibility)Last modified: 04 June 2024 Category: Potential Code Quality Issues ID: EventNeverSubscribedTo.Local EditorConfig: resharper_event_never_subscribed_to_local_highlighting=[error|warning|suggestion|hint|none] Default severity: Suggestion Language: C#, VB.NET 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.This inspection reports cases when a private event is declared, but there is no code that subscribes to this event anywhere in the current local scope. It means that the event, when raised, will not lead to any action being performed.