Editorconfig Guide.e

Qualification for property

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

Qualification for property

dotnet-style-qualification-for-property

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

Default value:

false

Possible values:

  • true
  • false

Examples

true
this.PropertyName = ...;
false
PropertyName = ...;