Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 264 Bytes

PositionalPropertyUsedProblem.md

File metadata and controls

12 lines (9 loc) · 264 Bytes

Prefer named properties instead of positional ones

Noncompliant Code Examples:

Log.Error("Disk quota {0} MB exceeded by {1}", quota, user);

Compliant Solution:

Log.Error("Disk quota {Quota} MB exceeded by {User}", quota, user);