S105 — Tabulation characters should not be used

Language
C#
Type
Code smell
Severity
Minor
Tags
convention

Why is this an issue?

The tab width can differ from one development environment to another. Using tabs may require other developers to configure their environment (text editor, preferences, etc.) to read source code.

That is why using spaces is preferable.

↑ Back to top