Editorconfig Guide.e

Qualification for event

EditorConfig key: dotnet-style-qualification-for-event

Qualification for event

dotnet-style-qualification-for-event

This option controls whether event access should be qualified with this. (C#) or Me. (Visual Basic).

Default value:

false

Possible values:

  • true
  • false

Examples

true
this.Event += handler;
false
Event += handler;